From e730598f5fbad558b7a828a9a1d77d1af4c1b991 Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Gomez Date: Tue, 16 Feb 2021 12:22:02 -0800 Subject: [PATCH 01/13] change to use managedclusters sdk --- src/ServiceFabric/ServiceFabric.sln | 9 +++-- ...ceFabricManagedClusterClientCertificate.cs | 10 ++--- ...ServiceFabricManagedNodeTypeVMExtension.cs | 10 ++--- ...dAzServiceFabricManagedNodeTypeVMSecret.cs | 10 ++--- .../GetAzServiceFabricManagedCluster.cs | 14 +++---- .../GetAzServiceFabricManagedNodeType.cs | 14 +++---- .../NewAzServiceFabricManagedCluster.cs | 32 +++++++-------- .../NewAzServiceFabricManagedNodeType.cs | 10 ++--- .../RemoveAzServiceFabricManagedCluster.cs | 4 +- ...ceFabricManagedClusterClientCertificate.cs | 10 ++--- .../RemoveAzServiceFabricManagedNodeType.cs | 8 ++-- ...ServiceFabricManagedNodeTypeVMExtension.cs | 10 ++--- .../RestartAzServiceFabricManagedNodeType.cs | 4 +- .../SetAzServiceFabricManagedCluster.cs | 39 ++++++++----------- .../SetAzServiceFabricManagedNodeType.cs | 12 +++--- .../Commands/ServiceFabricCommonCmdletBase.cs | 8 ++++ .../ManagedClusters/ManagedClusterSku.cs | 2 +- .../ManagedClusters/PSManagedCluster.cs | 15 +++---- .../ManagedClusters/PSManagedNodeType.cs | 15 +++---- .../ServiceFabric/ServiceFabric.csproj | 3 +- 20 files changed, 124 insertions(+), 115 deletions(-) diff --git a/src/ServiceFabric/ServiceFabric.sln b/src/ServiceFabric/ServiceFabric.sln index 57783ec9dea0..119d35dd8760 100644 --- a/src/ServiceFabric/ServiceFabric.sln +++ b/src/ServiceFabric/ServiceFabric.sln @@ -1,7 +1,6 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2042 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30104.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceFabric", "ServiceFabric\ServiceFabric.csproj", "{C1A0C9B1-9CC3-49EB-9765-A0AB1E695AF9}" EndProject @@ -39,6 +38,10 @@ Global {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs index 654c1ea2bbda..d17c60d153fb 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs @@ -16,10 +16,10 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -105,7 +105,7 @@ public override void ExecuteCmdlet() try { ManagedCluster updatedCluster = this.GetClusterWithAddedClientCert(); - var beginRequestResponse = this.SFRPClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, updatedCluster) + var beginRequestResponse = this.SfrpMcClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, updatedCluster) .GetAwaiter().GetResult(); var cluster = this.PollLongRunningOperation(beginRequestResponse); @@ -122,7 +122,7 @@ public override void ExecuteCmdlet() private ManagedCluster GetClusterWithAddedClientCert() { - ManagedCluster currentCluster = this.SFRPClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); + ManagedCluster currentCluster = this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); if (currentCluster.Clients == null) { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs index b5dd14b0bd7c..ef2ccd330ac0 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs @@ -16,10 +16,10 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -98,7 +98,7 @@ public override void ExecuteCmdlet() try { NodeType updatedNodeTypeParams = this.GetNodeTypeWithAddedExtension(); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.NodeTypeName, updatedNodeTypeParams) + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.NodeTypeName, updatedNodeTypeParams) .GetAwaiter().GetResult(); var nodeType = this.PollLongRunningOperation(beginRequestResponse); @@ -115,7 +115,7 @@ public override void ExecuteCmdlet() private NodeType GetNodeTypeWithAddedExtension() { - NodeType currentNodeType = this.SFRPClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.NodeTypeName); + NodeType currentNodeType = this.SfrpMcClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.NodeTypeName); if (currentNodeType.VmExtensions == null) { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs index e2de8cc38c4d..42621d4f7361 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs @@ -17,10 +17,10 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -81,7 +81,7 @@ public override void ExecuteCmdlet() try { NodeType updatedNodeTypeParams = this.GetNodeTypeWithAddedSecret(); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, updatedNodeTypeParams) + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, updatedNodeTypeParams) .GetAwaiter().GetResult(); var nodeType = this.PollLongRunningOperation(beginRequestResponse); @@ -98,7 +98,7 @@ public override void ExecuteCmdlet() private NodeType GetNodeTypeWithAddedSecret() { - NodeType currentNodeType = this.SFRPClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); + NodeType currentNodeType = this.SfrpMcClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); if (currentNodeType.VmSecrets == null) { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs index 18c86d0e0fab..2da4794b4664 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs @@ -16,9 +16,9 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -55,20 +55,20 @@ public override void ExecuteCmdlet() switch(ParameterSetName) { case ByName: - var cluster = this.SFRPClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); + var cluster = this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); WriteObject(new PSManagedCluster(cluster), false); break; case ByResourceGroup: var clusterList = this.ReturnListByPageResponse( - this.SFRPClient.ManagedClusters.ListByResourceGroup(this.ResourceGroupName), - this.SFRPClient.ManagedClusters.ListByResourceGroupNext); + this.SfrpMcClient.ManagedClusters.ListByResourceGroup(this.ResourceGroupName), + this.SfrpMcClient.ManagedClusters.ListByResourceGroupNext); WriteObject(clusterList.Select(c => new PSManagedCluster(c)), true); break; case BySubscription: var cluster2List = this.ReturnListByPageResponse( - this.SFRPClient.ManagedClusters.ListBySubscription(), - this.SFRPClient.ManagedClusters.ListBySubscriptionNext); + this.SfrpMcClient.ManagedClusters.ListBySubscription(), + this.SfrpMcClient.ManagedClusters.ListBySubscriptionNext); WriteObject(cluster2List.Select(c => new PSManagedCluster(c)), true); break; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs index 9d9c6c4424d5..5502b79b03c1 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs @@ -16,9 +16,9 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -46,7 +46,7 @@ public class GetAzServiceFabricManagedNodeType : ServiceFabricCommonCmdletBase [ValidateNotNullOrEmpty()] public string ClusterName { get; set; } - [Parameter(Mandatory = true, ParameterSetName = ByName, ValueFromPipelineByPropertyName = true, + [Parameter(Mandatory = false, ParameterSetName = ByName, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the name of the node type.")] [ValidateNotNullOrEmpty()] [Alias("NodeTypeName")] @@ -58,16 +58,16 @@ public override void ExecuteCmdlet() { try { - if (ParameterSetName == ByName) + if (!string.IsNullOrEmpty(this.Name)) { - var nodeType = this.SFRPClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); + var nodeType = this.SfrpMcClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); WriteObject(new PSManagedNodeType(nodeType), false); } else { var nodeTypeList = this.ReturnListByPageResponse( - this.SFRPClient.NodeTypes.ListByManagedClusters(this.ResourceGroupName, this.ClusterName), - this.SFRPClient.NodeTypes.ListByManagedClustersNext); + this.SfrpMcClient.NodeTypes.ListByManagedClusters(this.ResourceGroupName, this.ClusterName), + this.SfrpMcClient.NodeTypes.ListByManagedClustersNext); WriteObject(nodeTypeList.Select(nt => new PSManagedNodeType(nt)), true); } } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs index dddf05d88a13..21f90485aabf 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs @@ -17,13 +17,14 @@ using System.Security; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.Internal.Resources.Models; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; using Microsoft.WindowsAzure.Commands.Common; -using Sku = Microsoft.Azure.Management.ServiceFabric.Models.Sku; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; +using Sku = Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -63,7 +64,7 @@ public class NewAzServiceFabricManagedCluster : ServiceFabricCommonCmdletBase [Parameter(Mandatory = false, ParameterSetName = ClientCertByTp, HelpMessage = "Cluster service fabric code version upgrade mode. Automatic or Manual.")] [Parameter(Mandatory = false, ParameterSetName = ClientCertByCn, HelpMessage = "Cluster service fabric code version upgrade mode. Automatic or Manual.")] - public ClusterUpgradeMode UpgradeMode { get; set; } + public Models.ClusterUpgradeMode UpgradeMode { get; set; } [Parameter(Mandatory = false, ParameterSetName = ClientCertByTp, HelpMessage = "Cluster service fabric code version. Only use if upgrade mode is Manual.")] [Parameter(Mandatory = false, ParameterSetName = ClientCertByCn, HelpMessage = "Cluster service fabric code version. Only use if upgrade mode is Manual.")] @@ -115,6 +116,7 @@ public class NewAzServiceFabricManagedCluster : ServiceFabricCommonCmdletBase [Parameter(Mandatory = false, ParameterSetName = ClientCertByCn, HelpMessage = "Cluster's dns name.")] public string DnsName { get; set; } + [CmdletParameterBreakingChange("ReverseProxyEndpointPort", ChangeDescription = "Parameter is not supported in managed clusters. It will be depreacated without being replaced.")] [Parameter(Mandatory = false, ParameterSetName = ClientCertByTp, HelpMessage = "Endpoint used by reverse proxy.")] [Parameter(Mandatory = false, ParameterSetName = ClientCertByCn, HelpMessage = "Endpoint used by reverse proxy.")] public int? ReverseProxyEndpointPort { get; set; } @@ -140,7 +142,7 @@ public override void ExecuteCmdlet() { try { - ManagedCluster cluster = SafeGetResource(() => this.SFRPClient.ManagedClusters.Get(this.ResourceGroupName, this.Name)); + ManagedCluster cluster = SafeGetResource(() => this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.Name)); if (cluster != null) { WriteError(new ErrorRecord(new InvalidOperationException(string.Format("Cluster '{0}' already exists.", this.Name)), @@ -157,7 +159,7 @@ public override void ExecuteCmdlet() } ManagedCluster newClusterParams = this.GetNewManagedClusterParameters(); - var beginRequestResponse = this.SFRPClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, newClusterParams) + var beginRequestResponse = this.SfrpMcClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, newClusterParams) .GetAwaiter().GetResult(); cluster = this.PollLongRunningOperation(beginRequestResponse); @@ -175,7 +177,12 @@ public override void ExecuteCmdlet() private ManagedCluster GetNewManagedClusterParameters() { - if (this.UpgradeMode == ClusterUpgradeMode.Automatic && !string.IsNullOrEmpty(this.CodeVersion)) + if (this.UpgradeMode == Models.ClusterUpgradeMode.Manual) + { + throw new PSArgumentException("Currently only upgrade mode Automatic is supported. Support for Manual mode will be added latter on.", "UpgradeMode"); + } + + if (this.UpgradeMode == Models.ClusterUpgradeMode.Automatic && !string.IsNullOrEmpty(this.CodeVersion)) { throw new PSArgumentException("CodeVersion should only be used when upgrade mode is set to Manual.", "CodeVersion"); } @@ -204,25 +211,18 @@ private ManagedCluster GetNewManagedClusterParameters() this.DnsName = this.Name; } + // TODO alsantam: add new values var newCluster = new ManagedCluster( location: this.Location, dnsName: this.DnsName, - clusterUpgradeMode: this.UpgradeMode.ToString(), - useTestExtension: this.UseTestExtension, clients: clientCerts, adminUserName: this.AdminUserName, adminPassword: this.AdminPassword.ConvertToString(), httpGatewayConnectionPort: this.HttpGatewayConnectionPort, clientConnectionPort: this.ClientConnectionPort, - reverseProxyEndpointPort: this.ReverseProxyEndpointPort, sku: new Sku(name: this.Sku.ToString()) ); - if (this.UpgradeMode == ClusterUpgradeMode.Manual) - { - newCluster.ClusterCodeVersion = this.CodeVersion; - } - return newCluster; } } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs index af19c5a55c75..84db0f0843b1 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs @@ -17,10 +17,10 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -104,7 +104,7 @@ public override void ExecuteCmdlet() { try { - NodeType nodeType = SafeGetResource(() => this.SFRPClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name)); + NodeType nodeType = SafeGetResource(() => this.SfrpMcClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name)); if (nodeType != null) { WriteError(new ErrorRecord(new InvalidOperationException(string.Format("Node type '{0}' already exists.", this.Name)), @@ -113,7 +113,7 @@ public override void ExecuteCmdlet() else { NodeType newNodeTypeParams = this.GetNewNodeTypeParameters(); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, newNodeTypeParams) + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, newNodeTypeParams) .GetAwaiter().GetResult(); nodeType = this.PollLongRunningOperation(beginRequestResponse); diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs index 3819b6a23a24..4c67f6901eab 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs @@ -15,7 +15,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -66,7 +66,7 @@ public override void ExecuteCmdlet() { try { - var beginRequestResponse = this.SFRPClient.ManagedClusters.BeginDeleteWithHttpMessagesAsync( + var beginRequestResponse = this.SfrpMcClient.ManagedClusters.BeginDeleteWithHttpMessagesAsync( this.ResourceGroupName, this.Name).GetAwaiter().GetResult(); diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs index 9fd8af5499e4..aa5c1012ffe1 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs @@ -16,10 +16,10 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -92,7 +92,7 @@ public override void ExecuteCmdlet() try { ManagedCluster updatedCluster = this.GetClusterWithRemovedClientCert(); - var beginRequestResponse = this.SFRPClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, updatedCluster) + var beginRequestResponse = this.SfrpMcClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, updatedCluster) .GetAwaiter().GetResult(); var cluster = this.PollLongRunningOperation(beginRequestResponse); @@ -116,7 +116,7 @@ public override void ExecuteCmdlet() private ManagedCluster GetClusterWithRemovedClientCert() { - ManagedCluster currentCluster = this.SFRPClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); + ManagedCluster currentCluster = this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); if (currentCluster.Clients == null || currentCluster.Clients.Count() == 0) { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs index 673cb2e5c6ce..b24368fc5da6 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs @@ -15,8 +15,8 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -111,7 +111,7 @@ public override void ExecuteCmdlet() { var actionParams = new NodeTypeActionParameters(nodes: this.NodeName, force: this.ForceRemoveNode.IsPresent); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginDeleteNodeWithHttpMessagesAsync( + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginDeleteNodeWithHttpMessagesAsync( this.ResourceGroupName, this.ClusterName, this.Name, @@ -127,7 +127,7 @@ public override void ExecuteCmdlet() case DeleteNodeTypeById: if (ShouldProcess(target: this.Name, action: string.Format("Remove node type: {0} on cluster {1}, resource group {2}", this.Name, this.ClusterName, this.ResourceGroupName))) { - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginDeleteWithHttpMessagesAsync( + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginDeleteWithHttpMessagesAsync( this.ResourceGroupName, this.ClusterName, this.Name).GetAwaiter().GetResult(); diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs index 14a4214e70d3..7478056eaf3c 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs @@ -16,10 +16,10 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -77,7 +77,7 @@ public override void ExecuteCmdlet() try { NodeType updatedNodeTypeParams = this.GetNodeTypeWithRemovedExtension(); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.NodeTypeName, updatedNodeTypeParams) + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.NodeTypeName, updatedNodeTypeParams) .GetAwaiter().GetResult(); var nodeType = this.PollLongRunningOperation(beginRequestResponse); @@ -101,7 +101,7 @@ public override void ExecuteCmdlet() private NodeType GetNodeTypeWithRemovedExtension() { - NodeType currentNodeType = this.SFRPClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.NodeTypeName); + NodeType currentNodeType = this.SfrpMcClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.NodeTypeName); if (currentNodeType.VmExtensions != null) { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs index 1f83ce898870..d69591bcae7b 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs @@ -15,7 +15,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -69,7 +69,7 @@ public override void ExecuteCmdlet() try { var actionParams = new NodeTypeActionParameters(nodes: this.NodeName, force: this.ForceRestart.IsPresent); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginRestartWithHttpMessagesAsync( + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginRestartWithHttpMessagesAsync( this.ResourceGroupName, this.ClusterName, this.Name, diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs index d9b0ec9ce02a..a561cf2537a5 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs @@ -15,10 +15,11 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -60,7 +61,7 @@ public class SetAzServiceFabricManagedCluster : ServiceFabricCommonCmdletBase [Parameter(Mandatory = false, ParameterSetName = WithParamsByName, HelpMessage = "Cluster code version upgrade mode. Automatic or Manual.")] [Parameter(Mandatory = false, ParameterSetName = WithParamsById, HelpMessage = "Cluster code version upgrade mode. Automatic or Manual.")] - public ClusterUpgradeMode? UpgradeMode { get; set; } + public Models.ClusterUpgradeMode? UpgradeMode { get; set; } [Parameter(Mandatory = false, ParameterSetName = WithParamsByName, HelpMessage = "Cluster code version. Only use if upgrade mode is Manual.")] [Parameter(Mandatory = false, ParameterSetName = WithParamsById, HelpMessage = "Cluster code version. Only use if upgrade mode is Manual.")] @@ -78,6 +79,7 @@ public class SetAzServiceFabricManagedCluster : ServiceFabricCommonCmdletBase [Parameter(Mandatory = false, ParameterSetName = WithParamsById, HelpMessage = "Cluster's dns name.")] public string DnsName { get; set; } + [CmdletParameterBreakingChange("ReverseProxyEndpointPort", ChangeDescription = "Parameter is not supported in managed clusters. It will be depreacated without being replaced.")] [Parameter(Mandatory = false, ParameterSetName = WithParamsByName, HelpMessage = "Endpoint used by reverse proxy.")] [Parameter(Mandatory = false, ParameterSetName = WithParamsById, HelpMessage = "Endpoint used by reverse proxy.")] public int? ReverseProxyEndpointPort { get; set; } @@ -108,7 +110,7 @@ public override void ExecuteCmdlet() throw new ArgumentException("Invalid parameter set", ParameterSetName); } - var beginRequestResponse = this.SFRPClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, updatedClusterParams) + var beginRequestResponse = this.SfrpMcClient.ManagedClusters.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.Name, updatedClusterParams) .GetAwaiter().GetResult(); var cluster = this.PollLongRunningOperation(beginRequestResponse); @@ -125,14 +127,9 @@ public override void ExecuteCmdlet() private ManagedCluster GetUpdatedClusterParams() { - var currentCluster = this.SFRPClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); + var currentCluster = this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.Name); this.ValidateParams(currentCluster); - if (this.UpgradeMode.HasValue) - { - currentCluster.ClusterUpgradeMode = this.UpgradeMode.ToString(); - } - if (!string.IsNullOrEmpty(this.CodeVersion)) { currentCluster.ClusterCodeVersion = this.CodeVersion; @@ -148,11 +145,6 @@ private ManagedCluster GetUpdatedClusterParams() currentCluster.DnsName = DnsName; } - if (this.ReverseProxyEndpointPort.HasValue) - { - currentCluster.ReverseProxyEndpointPort = ReverseProxyEndpointPort; - } - return currentCluster; } @@ -160,21 +152,24 @@ private void ValidateParams(ManagedCluster currentCluster) { if (this.UpgradeMode.HasValue) { - if (this.UpgradeMode == ClusterUpgradeMode.Automatic) + if (this.UpgradeMode == Models.ClusterUpgradeMode.Manual) { - if (!string.IsNullOrEmpty(this.CodeVersion)) - { - throw new PSArgumentException("CodeVersion should only be used when upgrade mode is set to Manual.", "CodeVersion"); - } + throw new PSArgumentException("Currently only upgrade mode Automatic is supported. Support for Manual mode will be added latter on.", "UpgradeMode"); } } - else if (!string.IsNullOrEmpty(this.CodeVersion)) + + if (!string.IsNullOrEmpty(this.CodeVersion)) { + throw new PSArgumentException("Currently the cluster upgrade mode is set to Automatic and CodeVersion should only be used when upgrade mode is set to Manual.", "CodeVersion"); + + // TODO: when manual is available add this validation + /* Enum.TryParse(currentCluster.ClusterUpgradeMode, out ClusterUpgradeMode upgradeMode); if (upgradeMode == ClusterUpgradeMode.Automatic) { throw new PSArgumentException("Currently the cluster upgrade mode is set to Automatic and CodeVersion should only be used when upgrade mode is set to Manual.", "CodeVersion"); } + */ } } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs index cadd61b00884..49579ec4e460 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs @@ -17,9 +17,9 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -151,7 +151,7 @@ public override void ExecuteCmdlet() { var actionParams = new NodeTypeActionParameters(nodes: this.NodeName, force: this.ForceReimage.IsPresent); - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginReimageWithHttpMessagesAsync( + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginReimageWithHttpMessagesAsync( this.ResourceGroupName, this.ClusterName, this.Name, @@ -179,7 +179,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(target: this.Name, action: string.Format("Update node type name {0}, cluster: {1}", this.Name, this.ClusterName))) { - var beginRequestResponse = this.SFRPClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, updatedNodeTypeParams) + var beginRequestResponse = this.SfrpMcClient.NodeTypes.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, updatedNodeTypeParams) .GetAwaiter().GetResult(); var nodeType = this.PollLongRunningOperation(beginRequestResponse); @@ -196,7 +196,7 @@ public override void ExecuteCmdlet() private NodeType GetUpdatedNodeTypeParams() { - NodeType currentNodeType = this.SFRPClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); + NodeType currentNodeType = this.SfrpMcClient.NodeTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); if (this.InstanceCount.HasValue) { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs index 915c6d9df5c5..a83bbdc9706c 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs @@ -20,6 +20,7 @@ using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.Azure.Management.ServiceFabric; using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Rest.Azure; using Newtonsoft.Json; using Newtonsoft.Json.Linq; @@ -41,6 +42,7 @@ public class ServiceFabricCommonCmdletBase : AzureRMCmdlet internal static int WriteVerboseIntervalInSec = 20; private Lazy sfrpClient; + private Lazy sfrpMcClient; private Lazy resourcesClient; internal ServiceFabricManagementClient SFRPClient @@ -49,6 +51,12 @@ internal ServiceFabricManagementClient SFRPClient set { sfrpClient = new Lazy(() => value); } } + internal ServiceFabricManagedClustersManagementClient SfrpMcClient + { + get { return sfrpMcClient.Value; } + set { sfrpMcClient = new Lazy(() => value); } + } + internal IResourceManagementClient ResourcesClient { get { return resourcesClient.Value; } diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs index ee2a6d3dc9f7..1b0a645fdb69 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs @@ -11,7 +11,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters { public enum ManagedClusterSku { diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs index 88e8eeb5e8a9..02ee833bdcf9 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs @@ -12,9 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; -namespace Microsoft.Azure.Commands.ServiceFabric.Models +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters { public class PSManagedCluster : ManagedCluster { @@ -26,24 +26,25 @@ public PSManagedCluster(ManagedCluster cluster) tags: cluster.Tags, etag: cluster.Etag, clusterId: cluster.ClusterId, - clusterUpgradeDescription: cluster.ClusterUpgradeDescription, - clusterUpgradeMode: cluster.ClusterUpgradeMode, + addonFeatures: cluster.AddonFeatures, + clusterUpgradeCadence: cluster.ClusterUpgradeCadence, clusterCodeVersion: cluster.ClusterCodeVersion, provisioningState: cluster.ProvisioningState, - useTestExtension: cluster.UseTestExtension, fabricSettings: cluster.FabricSettings, azureActiveDirectory: cluster.AzureActiveDirectory, clients: cluster.Clients, + networkSecurityRules: cluster.NetworkSecurityRules, loadBalancingRules: cluster.LoadBalancingRules, adminPassword: cluster.AdminPassword, adminUserName: cluster.AdminUserName, httpGatewayConnectionPort: cluster.HttpGatewayConnectionPort, clientConnectionPort: cluster.ClientConnectionPort, - clusterCertificateThumbprint: cluster.ClusterCertificateThumbprint, + clusterCertificateThumbprints: cluster.ClusterCertificateThumbprints, clusterState: cluster.ClusterState, + ipv4Address: cluster.Ipv4Address, fqdn: cluster.Fqdn, dnsName: cluster.DnsName, - reverseProxyEndpointPort: cluster.ReverseProxyEndpointPort, + applicationTypeVersionsCleanupPolicy: cluster.ApplicationTypeVersionsCleanupPolicy, sku: cluster.Sku) { } diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs index 7ead7ab69d6a..ba122b5ad400 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs @@ -12,20 +12,20 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; -namespace Microsoft.Azure.Commands.ServiceFabric.Models +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters { public class PSManagedNodeType : NodeType { public PSManagedNodeType(NodeType nodeType) - : base(isPrimary: nodeType.IsPrimary, - vmInstanceCount: nodeType.VmInstanceCount, - dataDiskSizeGB: nodeType.DataDiskSizeGB, - id: nodeType.Id, + : base(id: nodeType.Id, name: nodeType.Name, type: nodeType.Type, tags: nodeType.Tags, + isPrimary: nodeType.IsPrimary, + vmInstanceCount: nodeType.VmInstanceCount, + dataDiskSizeGB: nodeType.DataDiskSizeGB, provisioningState: nodeType.ProvisioningState, placementProperties: nodeType.PlacementProperties, capacities: nodeType.Capacities, @@ -37,7 +37,8 @@ public PSManagedNodeType(NodeType nodeType) vmImageSku: nodeType.VmImageSku, vmImageVersion: nodeType.VmImageVersion, vmSecrets: nodeType.VmSecrets, - vmExtensions: nodeType.VmExtensions) + vmExtensions: nodeType.VmExtensions, + vmManagedIdentity: nodeType.VmManagedIdentity) { } } diff --git a/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj b/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj index 6c85874f0e46..62409dbac842 100644 --- a/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj +++ b/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj @@ -1,4 +1,4 @@ - + ServiceFabric @@ -14,6 +14,7 @@ + From a2f6b8bc59a39f3bf03280c27a3b6b49be42d622 Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Gomez Date: Tue, 16 Feb 2021 15:42:42 -0800 Subject: [PATCH 02/13] create managedcmdletbase to separate sdk clients --- ...ceFabricManagedClusterClientCertificate.cs | 2 +- ...ServiceFabricManagedNodeTypeVMExtension.cs | 2 +- ...dAzServiceFabricManagedNodeTypeVMSecret.cs | 2 +- .../GetAzServiceFabricManagedCluster.cs | 2 +- .../GetAzServiceFabricManagedNodeType.cs | 2 +- .../NewAzServiceFabricManagedCluster.cs | 2 +- .../NewAzServiceFabricManagedNodeType.cs | 2 +- .../RemoveAzServiceFabricManagedCluster.cs | 2 +- ...ceFabricManagedClusterClientCertificate.cs | 2 +- .../RemoveAzServiceFabricManagedNodeType.cs | 2 +- ...ServiceFabricManagedNodeTypeVMExtension.cs | 2 +- .../RestartAzServiceFabricManagedNodeType.cs | 2 +- .../ServiceFabricManagedCmdletBase.cs | 247 +++++++++++++++ .../SetAzServiceFabricManagedCluster.cs | 2 +- .../SetAzServiceFabricManagedNodeType.cs | 2 +- .../Commands/ServiceFabricCmdletBase.cs | 25 +- .../Commands/ServiceFabricCommonCmdletBase.cs | 291 ++++-------------- 17 files changed, 349 insertions(+), 242 deletions(-) create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ServiceFabricManagedCmdletBase.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs index d17c60d153fb..c07a46672ff5 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterClientCertificate", DefaultParameterSetName = ClientCertByTpByObj, SupportsShouldProcess = true), OutputType(typeof(PSManagedCluster))] - public class AddAzServiceFabricManagedClusterClientCertificate : ServiceFabricCommonCmdletBase + public class AddAzServiceFabricManagedClusterClientCertificate : ServiceFabricManagedCmdletBase { protected const string ClientCertByTpByName = "ClientCertByTpByName"; protected const string ClientCertByCnByName = "ClientCertByCnByName"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs index ef2ccd330ac0..421625c45b33 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeTypeVMExtension", DefaultParameterSetName = ByObj, SupportsShouldProcess = true), OutputType(typeof(PSManagedNodeType))] - public class AddAzServiceFabricManagedNodeTypeVMExtension : ServiceFabricCommonCmdletBase + public class AddAzServiceFabricManagedNodeTypeVMExtension : ServiceFabricManagedCmdletBase { protected const string ByName = "ByName"; protected const string ByObj = "ByObj"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs index 42621d4f7361..c4fa389e577d 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeTypeVMSecret", DefaultParameterSetName = ByObj, SupportsShouldProcess = true), OutputType(typeof(PSManagedNodeType))] - public class AddAzServiceFabricManagedNodeTypeVMSecret : ServiceFabricCommonCmdletBase + public class AddAzServiceFabricManagedNodeTypeVMSecret : ServiceFabricManagedCmdletBase { protected const string ByName = "ByName"; protected const string ByObj = "ByObj"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs index 2da4794b4664..6fd3b226d25c 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedCluster", DefaultParameterSetName = BySubscription), OutputType(typeof(PSManagedCluster))] - public class GetServiceFabricManagedCluster : ServiceFabricCommonCmdletBase + public class GetServiceFabricManagedCluster : ServiceFabricManagedCmdletBase { protected const string ByName = "ByName"; protected const string ByResourceGroup = "ByResourceGroup"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs index 5502b79b03c1..9cf0ec65e865 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeType", DefaultParameterSetName = ByName), OutputType(typeof(PSManagedNodeType))] - public class GetAzServiceFabricManagedNodeType : ServiceFabricCommonCmdletBase + public class GetAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase { protected const string ByName = "ByName"; protected const string ByResourceGroup = "ByResourceGroup"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs index 21f90485aabf..ecc097f9c67c 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedCluster", DefaultParameterSetName = ClientCertByTp, SupportsShouldProcess = true), OutputType(typeof(PSManagedCluster))] - public class NewAzServiceFabricManagedCluster : ServiceFabricCommonCmdletBase + public class NewAzServiceFabricManagedCluster : ServiceFabricManagedCmdletBase { protected const string ClientCertByTp = "ClientCertByTp"; protected const string ClientCertByCn = "ClientCertByCn"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs index 84db0f0843b1..0616ecd86e39 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeType", SupportsShouldProcess = true), OutputType(typeof(PSManagedNodeType))] - public class NewAzServiceFabricManagedNodeType : ServiceFabricCommonCmdletBase + public class NewAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase { #region Params diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs index 4c67f6901eab..e87a40c44d36 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedCluster", DefaultParameterSetName = ByObj, SupportsShouldProcess = true), OutputType(typeof(bool))] - public class RemoveServiceFabricManagedCluster : ServiceFabricCommonCmdletBase + public class RemoveServiceFabricManagedCluster : ServiceFabricManagedCmdletBase { protected const string ByName = "ByName"; protected const string ById = "ById"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs index aa5c1012ffe1..1ac6466f720c 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterClientCertificate", DefaultParameterSetName = ClientCertByTpByObj, SupportsShouldProcess = true), OutputType(typeof(PSManagedCluster))] - public class RemoveAzServiceFabricManagedClusterClientCertificate : ServiceFabricCommonCmdletBase + public class RemoveAzServiceFabricManagedClusterClientCertificate : ServiceFabricManagedCmdletBase { protected const string ClientCertByTpByName = "ClientCertByCnTpName"; protected const string ClientCertByCnByName = "ClientCertByCnByName"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs index b24368fc5da6..d7a5db3effb4 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeType", DefaultParameterSetName = DeleteNodeTypeByObj, SupportsShouldProcess = true), OutputType(typeof(bool))] - public class RemoveAzServiceFabricManagedNodeType : ServiceFabricCommonCmdletBase + public class RemoveAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase { protected const string DeleteNodeTypeByName = "DeleteNodeTypeByName"; protected const string DeleteNodeTypeByObj = "DeleteNodeTypeByObj"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs index 7478056eaf3c..aa8bbfffa8e2 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeTypeVMExtension", DefaultParameterSetName = ByObj, SupportsShouldProcess = true), OutputType(typeof(PSManagedNodeType))] - public class RemoveAzServiceFabricManagedNodeTypeVMExtension : ServiceFabricCommonCmdletBase + public class RemoveAzServiceFabricManagedNodeTypeVMExtension : ServiceFabricManagedCmdletBase { protected const string ByName = "ByName"; protected const string ByObj = "ByObj"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs index d69591bcae7b..95dab56ea15b 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsLifecycle.Restart, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeType", SupportsShouldProcess = true), OutputType(typeof(bool))] - public class RestartAzServiceFabricManagedNodeType : ServiceFabricCommonCmdletBase + public class RestartAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase { #region Params diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ServiceFabricManagedCmdletBase.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ServiceFabricManagedCmdletBase.cs new file mode 100644 index 000000000000..b59dad141d00 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ServiceFabricManagedCmdletBase.cs @@ -0,0 +1,247 @@ +// ---------------------------------------------------------------------------------- +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Rest.Azure; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + public class ServiceFabricManagedCmdletBase : ServiceFabricCommonCmdletBase + { + private Lazy sfrpMcClient; + + internal ServiceFabricManagedClustersManagementClient SfrpMcClient + { + get { return sfrpMcClient.Value; } + set { sfrpMcClient = new Lazy(() => value); } + } + + public ServiceFabricManagedCmdletBase() + { + InitializeManagementClients(); + } + + private void InitializeManagementClients() + { + this.sfrpMcClient = new Lazy(() => + { + var armClient = AzureSession.Instance.ClientFactory. + CreateArmClient( + DefaultContext, + AzureEnvironment.Endpoint.ResourceManager); + return armClient; + }); + } + + #region Helper + + protected void PollLongRunningOperation(Rest.Azure.AzureOperationResponse beginRequestResponse) + { + AzureOperationResponse response2 = new Rest.Azure.AzureOperationResponse + { + Request = beginRequestResponse.Request, + Response = beginRequestResponse.Response, + RequestId = beginRequestResponse.RequestId + }; + + this.PollLongRunningOperation(response2); + } + + protected T PollLongRunningOperation(AzureOperationResponse beginRequestResponse) where T : class + { + var progress = new ProgressRecord(0, "Request in progress", "Getting Status..."); + WriteProgress(progress); + WriteVerboseWithTimestamp(string.Format("Beging request ARM correlationId: '{0}' response: '{1}'", + beginRequestResponse.RequestId, + beginRequestResponse.Response.StatusCode)); + + AzureOperationResponse result = null; + var tokenSource = new CancellationTokenSource(); + Uri asyncOperationStatusEndpoint = null; + HttpRequestMessage asyncOpStatusRequest = null; + if (beginRequestResponse.Response.Headers.TryGetValues(Constants.AzureAsyncOperationHeader, out IEnumerable headerValues)) + { + asyncOperationStatusEndpoint = new Uri(headerValues.First()); + asyncOpStatusRequest = beginRequestResponse.Request; + } + + var requestTask = Task.Factory.StartNew(() => + { + try + { + result = this.SfrpMcClient.GetLongRunningOperationResultAsync(beginRequestResponse, null, CancellationToken.None).GetAwaiter().GetResult(); + } + finally + { + tokenSource.Cancel(); + } + }); + + + while (!tokenSource.IsCancellationRequested) + { + tokenSource.Token.WaitHandle.WaitOne(TimeSpan.FromSeconds(WriteVerboseIntervalInSec)); + if (asyncOpStatusRequest != null && asyncOperationStatusEndpoint != null) + { + try + { + using (HttpClient client = new HttpClient()) + { + asyncOpStatusRequest = this.CloneAndDisposeRequest(asyncOpStatusRequest, asyncOperationStatusEndpoint, HttpMethod.Get); + HttpResponseMessage responseJson = client.SendAsync(asyncOpStatusRequest).GetAwaiter().GetResult(); + string content = responseJson.Content.ReadAsStringAsync().Result; + Operation op = this.ConvertToOperation(content); + + if (op != null) + { + string progressMessage = $"Operation Status: {op.Status}. Progress: {op.PercentComplete} %"; + WriteDebugWithTimestamp(progressMessage); + progress.StatusDescription = progressMessage; + progress.PercentComplete = Convert.ToInt32(op.PercentComplete); + WriteProgress(progress); + } + } + } + catch (Exception ex) + { + // don't throw if poll operation state fails + WriteDebugWithTimestamp("Error polling operation status {0}", ex); + } + } + else + { + if (progress.StatusDescription != "In progress") + { + progress.StatusDescription = "In progress"; + WriteProgress(progress); + } + } + } + + if (requestTask.IsFaulted) + { + var errorMessage = string.Format( + "Long Running Operation Failed. Begin request with ARM correlationId: '{0}' response: '{1}' operationId '{0}'", + beginRequestResponse.RequestId, + beginRequestResponse.Response.StatusCode, + this.GetOperationIdFromAsyncHeader(beginRequestResponse.Response.Headers)); + + WriteErrorWithTimestamp(errorMessage); + throw requestTask.Exception; + } + + return result?.Body; + } + + private string GetOperationIdFromAsyncHeader(HttpResponseHeaders headers) + { + if (headers.Location != null) + { + return headers.Location.Segments.LastOrDefault(); + } + + if (headers.TryGetValues(Constants.AzureAsyncOperationHeader, out IEnumerable headerValues)) + { + var asyncOperationStatusEndpoint = new Uri(headerValues.First()); + return asyncOperationStatusEndpoint.Segments.LastOrDefault(); + } + + return "Unknown"; + } + + private Operation ConvertToOperation(string content) + { + try + { + var operationJObject = JObject.Parse(content); + var operation = new Operation(); + + if (operationJObject.TryGetValue("Name", StringComparison.OrdinalIgnoreCase, out JToken value)) + { + operation.Name = (string)value; + } + + if (operationJObject.TryGetValue("PercentComplete", StringComparison.OrdinalIgnoreCase, out value)) + { + operation.PercentComplete = (double)value; + } + + if (operationJObject.TryGetValue("Status", StringComparison.OrdinalIgnoreCase, out value)) + { + operation.Status = (string)value; + } + + if (operationJObject.TryGetValue("Error", StringComparison.OrdinalIgnoreCase, out value)) + { + operation.Error = new OperationError(); + if (((JObject)value).TryGetValue("Code", StringComparison.OrdinalIgnoreCase, out JToken innerValue)) + { + operation.Error.Code = (string)innerValue; + } + + if (((JObject)value).TryGetValue("Message", StringComparison.OrdinalIgnoreCase, out innerValue)) + { + operation.Error.Message = (string)innerValue; + } + } + + return operation; + } + catch(Exception ex) + { + WriteDebugWithTimestamp("unable to parse operation content '{0}' exception {1}", content, ex); + return null; + } + } + + private HttpRequestMessage CloneAndDisposeRequest(HttpRequestMessage original, Uri requestUri = null, HttpMethod method = null) + { + using (original) + { + var clone = new HttpRequestMessage + { + Method = method ?? original.Method, + RequestUri = requestUri ?? original.RequestUri, + Version = original.Version, + }; + + foreach (KeyValuePair prop in original.Properties) + { + clone.Properties.Add(prop); + } + + foreach (KeyValuePair> header in original.Headers) + { + clone.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + + return clone; + } + } + + #endregion + } +} \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs index a561cf2537a5..a8f176c5500f 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedCluster", DefaultParameterSetName = ByObj, SupportsShouldProcess = true), OutputType(typeof(PSManagedCluster))] - public class SetAzServiceFabricManagedCluster : ServiceFabricCommonCmdletBase + public class SetAzServiceFabricManagedCluster : ServiceFabricManagedCmdletBase { protected const string WithParamsByName = "WithPramsByName"; protected const string WithParamsById = "ByNameById"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs index 49579ec4e460..6f2f28a4c1df 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceFabric.Commands { [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedNodeType", DefaultParameterSetName = ByObj, SupportsShouldProcess = true), OutputType(new Type[] { typeof(bool), typeof(PSManagedNodeType) })] - public class SetAzServiceFabricManagedNodeType : ServiceFabricCommonCmdletBase + public class SetAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase { protected const string ReimageByName = "ReimageByName"; protected const string ReimageById = "ReimageById"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCmdletBase.cs b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCmdletBase.cs index 2c6e3dece0d7..a7e5962f8202 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCmdletBase.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCmdletBase.cs @@ -28,7 +28,6 @@ using Microsoft.Azure.Graph.RBAC.Version1_6.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; using Microsoft.Rest.Azure; using Microsoft.WindowsAzure.Commands.Common; using ServiceFabricProperties = Microsoft.Azure.Commands.ServiceFabric.Properties; @@ -94,11 +93,18 @@ public class ServiceFabricCmdletBase : ServiceFabricCommonCmdletBase #endregion #region RM Client + private Lazy sfrpClient; private Lazy computeClient; private Lazy keyVaultManageClient; private Lazy graphClient; private Lazy keyVaultClient; + internal ServiceFabricManagementClient SFRPClient + { + get { return sfrpClient.Value; } + set { sfrpClient = new Lazy(() => value); } + } + internal IComputeManagementClient ComputeClient { get { return computeClient.Value; } @@ -130,20 +136,29 @@ public ServiceFabricCmdletBase() : base() private void InitializeAzureRmClients() { - computeClient = new Lazy(() => + this.sfrpClient = new Lazy(() => + { + var armClient = AzureSession.Instance.ClientFactory. + CreateArmClient( + DefaultContext, + AzureEnvironment.Endpoint.ResourceManager); + return armClient; + }); + + this.computeClient = new Lazy(() => AzureSession.Instance.ClientFactory.CreateArmClient( DefaultContext, AzureEnvironment.Endpoint.ResourceManager)); - keyVaultManageClient = new Lazy(() => + this.keyVaultManageClient = new Lazy(() => AzureSession.Instance.ClientFactory.CreateArmClient( DefaultContext, AzureEnvironment.Endpoint.ResourceManager)); - keyVaultClient = new Lazy(() => + this.keyVaultClient = new Lazy(() => new KeyVaultClient(AuthenticationCallback)); - graphClient = new Lazy(() => + this.graphClient = new Lazy(() => AzureSession.Instance.ClientFactory.CreateArmClient( DefaultContext, AzureEnvironment.Endpoint.Graph)); } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs index a83bbdc9706c..2ec265294b39 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs @@ -14,26 +14,15 @@ using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.ResourceManager.Common; -using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.Azure.Management.ServiceFabric; -using Microsoft.Azure.Management.ServiceFabric.Models; -using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Rest.Azure; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Net; -using System.Net.Http; -using System.Net.Http.Headers; using System.Text; -using System.Threading; -using System.Threading.Tasks; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { @@ -41,22 +30,8 @@ public class ServiceFabricCommonCmdletBase : AzureRMCmdlet { internal static int WriteVerboseIntervalInSec = 20; - private Lazy sfrpClient; - private Lazy sfrpMcClient; private Lazy resourcesClient; - internal ServiceFabricManagementClient SFRPClient - { - get { return sfrpClient.Value; } - set { sfrpClient = new Lazy(() => value); } - } - - internal ServiceFabricManagedClustersManagementClient SfrpMcClient - { - get { return sfrpMcClient.Value; } - set { sfrpMcClient = new Lazy(() => value); } - } - internal IResourceManagementClient ResourcesClient { get { return resourcesClient.Value; } @@ -70,15 +45,6 @@ public ServiceFabricCommonCmdletBase() private void InitializeManagementClients() { - this.sfrpClient = new Lazy(() => - { - var armClient = AzureSession.Instance.ClientFactory. - CreateArmClient( - DefaultContext, - AzureEnvironment.Endpoint.ResourceManager); - return armClient; - }); - this.resourcesClient = new Lazy(() => AzureSession.Instance.ClientFactory.CreateArmClient( DefaultContext, @@ -131,7 +97,26 @@ protected T SafeGetResource(Func action, bool ingoreAllError=false) throw; } - catch (ErrorModelException e) + catch (Management.ServiceFabric.Models.ErrorModelException e) + { + if ((e.Body?.Error != null && + (e.Body.Error.Code.Equals("ResourceGroupNotFound", StringComparison.OrdinalIgnoreCase) || + e.Body.Error.Code.Equals("ResourceNotFound", StringComparison.OrdinalIgnoreCase) || + e.Body.Error.Code.Equals("NotFound", StringComparison.OrdinalIgnoreCase))) || + e.Response?.StatusCode == System.Net.HttpStatusCode.NotFound) + { + return default(T); + } + + if (ingoreAllError) + { + WriteWarning(e.ToString()); + return default(T); + } + + throw; + } + catch (Management.ServiceFabricManagedClusters.Models.ErrorModelException e) { if ((e.Body?.Error != null && (e.Body.Error.Code.Equals("ResourceGroupNotFound", StringComparison.OrdinalIgnoreCase) || @@ -175,190 +160,6 @@ protected IEnumerable ReturnListByPageResponse(IPage page, Func response2 = new Rest.Azure.AzureOperationResponse - { - Request = beginRequestResponse.Request, - Response = beginRequestResponse.Response, - RequestId = beginRequestResponse.RequestId - }; - - this.PollLongRunningOperation(response2); - } - - protected T PollLongRunningOperation(AzureOperationResponse beginRequestResponse) where T : class - { - var progress = new ProgressRecord(0, "Request in progress", "Getting Status..."); - WriteProgress(progress); - WriteVerboseWithTimestamp(string.Format("Beging request ARM correlationId: '{0}' response: '{1}'", - beginRequestResponse.RequestId, - beginRequestResponse.Response.StatusCode)); - - AzureOperationResponse result = null; - var tokenSource = new CancellationTokenSource(); - Uri asyncOperationStatusEndpoint = null; - HttpRequestMessage asyncOpStatusRequest = null; - if (beginRequestResponse.Response.Headers.TryGetValues(Constants.AzureAsyncOperationHeader, out IEnumerable headerValues)) - { - asyncOperationStatusEndpoint = new Uri(headerValues.First()); - asyncOpStatusRequest = beginRequestResponse.Request; - } - - var requestTask = Task.Factory.StartNew(() => - { - try - { - result = this.SFRPClient.GetLongRunningOperationResultAsync(beginRequestResponse, null, CancellationToken.None).GetAwaiter().GetResult(); - } - finally - { - tokenSource.Cancel(); - } - }); - - - while (!tokenSource.IsCancellationRequested) - { - tokenSource.Token.WaitHandle.WaitOne(TimeSpan.FromSeconds(WriteVerboseIntervalInSec)); - if (asyncOpStatusRequest != null && asyncOperationStatusEndpoint != null) - { - try - { - using (HttpClient client = new HttpClient()) - { - asyncOpStatusRequest = this.CloneAndDisposeRequest(asyncOpStatusRequest, asyncOperationStatusEndpoint, HttpMethod.Get); - HttpResponseMessage responseJson = client.SendAsync(asyncOpStatusRequest).GetAwaiter().GetResult(); - string content = responseJson.Content.ReadAsStringAsync().Result; - Operation op = this.ConvertToOperation(content); - - if (op != null) - { - string progressMessage = $"Operation Status: {op.Status}. Progress: {op.PercentComplete} %"; - WriteDebugWithTimestamp(progressMessage); - progress.StatusDescription = progressMessage; - progress.PercentComplete = Convert.ToInt32(op.PercentComplete); - WriteProgress(progress); - } - } - } - catch (Exception ex) - { - // don't throw if poll operation state fails - WriteDebugWithTimestamp("Error polling operation status {0}", ex); - } - } - else - { - if (progress.StatusDescription != "In progress") - { - progress.StatusDescription = "In progress"; - WriteProgress(progress); - } - } - } - - if (requestTask.IsFaulted) - { - var errorMessage = string.Format( - "Long Running Operation Failed. Begin request with ARM correlationId: '{0}' response: '{1}' operationId '{0}'", - beginRequestResponse.RequestId, - beginRequestResponse.Response.StatusCode, - this.GetOperationIdFromAsyncHeader(beginRequestResponse.Response.Headers)); - - WriteErrorWithTimestamp(errorMessage); - throw requestTask.Exception; - } - - return result?.Body; - } - - private string GetOperationIdFromAsyncHeader(HttpResponseHeaders headers) - { - if (headers.Location != null) - { - return headers.Location.Segments.LastOrDefault(); - } - - if (headers.TryGetValues(Constants.AzureAsyncOperationHeader, out IEnumerable headerValues)) - { - var asyncOperationStatusEndpoint = new Uri(headerValues.First()); - return asyncOperationStatusEndpoint.Segments.LastOrDefault(); - } - - return "Unknown"; - } - - private Operation ConvertToOperation(string content) - { - try - { - var operationJObject = JObject.Parse(content); - var operation = new Operation(); - - if (operationJObject.TryGetValue("Name", StringComparison.OrdinalIgnoreCase, out JToken value)) - { - operation.Name = (string)value; - } - - if (operationJObject.TryGetValue("PercentComplete", StringComparison.OrdinalIgnoreCase, out value)) - { - operation.PercentComplete = (double)value; - } - - if (operationJObject.TryGetValue("Status", StringComparison.OrdinalIgnoreCase, out value)) - { - operation.Status = (string)value; - } - - if (operationJObject.TryGetValue("Error", StringComparison.OrdinalIgnoreCase, out value)) - { - operation.Error = new OperationError(); - if (((JObject)value).TryGetValue("Code", StringComparison.OrdinalIgnoreCase, out JToken innerValue)) - { - operation.Error.Code = (string)innerValue; - } - - if (((JObject)value).TryGetValue("Message", StringComparison.OrdinalIgnoreCase, out innerValue)) - { - operation.Error.Message = (string)innerValue; - } - } - - return operation; - } - catch(Exception ex) - { - WriteDebugWithTimestamp("unable to parse operation content '{0}' exception {1}", content, ex); - return null; - } - } - - private HttpRequestMessage CloneAndDisposeRequest(HttpRequestMessage original, Uri requestUri = null, HttpMethod method = null) - { - using (original) - { - var clone = new HttpRequestMessage - { - Method = method ?? original.Method, - RequestUri = requestUri ?? original.RequestUri, - Version = original.Version, - }; - - foreach (KeyValuePair prop in original.Properties) - { - clone.Properties.Add(prop); - } - - foreach (KeyValuePair> header in original.Headers) - { - clone.Headers.TryAddWithoutValidation(header.Key, header.Value); - } - - return clone; - } - } - protected void PrintSdkExceptionDetail(Exception exception) { if (exception == null) @@ -366,7 +167,10 @@ protected void PrintSdkExceptionDetail(Exception exception) return; } - while (!(exception is CloudException || exception is ErrorModelException) && exception.InnerException != null) + while (!(exception is CloudException || + exception is Management.ServiceFabric.Models.ErrorModelException || + exception is Management.ServiceFabricManagedClusters.Models.ErrorModelException) + && exception.InnerException != null) { exception = exception.InnerException; } @@ -382,9 +186,34 @@ protected void PrintSdkExceptionDetail(Exception exception) new ErrorRecord(ex, string.Empty, ErrorCategory.NotSpecified, null)); } } - else if (exception is ErrorModelException) + else if (exception is Management.ServiceFabric.Models.ErrorModelException) { - var errorModelException = (ErrorModelException)exception; + var errorModelException = (Management.ServiceFabricManagedClusters.Models.ErrorModelException)exception; + if (errorModelException.Body != null) + { + var cloudErrorMessage = GetErrorModelErrorMessage(errorModelException.Body); + if (!string.IsNullOrEmpty(cloudErrorMessage)) + { + var ex = new Exception(cloudErrorMessage); + WriteError( + new ErrorRecord(ex, string.Empty, ErrorCategory.NotSpecified, null)); + } + } + + if (errorModelException.Response?.Content != null) + { + var exMessage = GetResponseExceptionMessage(errorModelException.Response?.Content); + if (!string.IsNullOrEmpty(exMessage)) + { + var ex = new Exception(exMessage); + WriteError( + new ErrorRecord(ex, string.Empty, ErrorCategory.NotSpecified, null)); + } + } + } + else if (exception is Management.ServiceFabric.Models.ErrorModelException) + { + var errorModelException = (Management.ServiceFabric.Models.ErrorModelException)exception; if (errorModelException.Body != null) { var cloudErrorMessage = GetErrorModelErrorMessage(errorModelException.Body); @@ -439,7 +268,23 @@ private string GetCloudErrorMessage(CloudError error) return message; } - private string GetErrorModelErrorMessage(ErrorModel error) + private string GetErrorModelErrorMessage(Management.ServiceFabricManagedClusters.Models.ErrorModel error) + { + if (error == null || error.Error == null) + { + return string.Empty; + } + + var message = string.Format( + "Code: {0}, Message: {1}{2}", + error.Error.Code, + error.Error.Message, + Environment.NewLine); + + return message; + } + + private string GetErrorModelErrorMessage(Management.ServiceFabric.Models.ErrorModel error) { if (error == null || error.Error == null) { From d082d378bae004deec03fcdf19d4d310ade84e3a Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Gomez Date: Tue, 16 Feb 2021 15:43:07 -0800 Subject: [PATCH 03/13] include managed client in tests project --- .../ServiceFabricApplicationTests.cs | 2 +- .../ScenarioTests/TestController.cs | 19 +++++++++++++++++-- .../ServiceFabric.Test.csproj | 1 + 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricApplicationTests.cs b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricApplicationTests.cs index 88033429e9fa..30597c583537 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricApplicationTests.cs +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricApplicationTests.cs @@ -30,7 +30,7 @@ public ServiceFabricApplicationTests(ITestOutputHelper output) _logger = new XunitTracingInterceptor(output); XunitTracingInterceptor.AddToContext(_logger); - ServiceFabricCommonCmdletBase.WriteVerboseIntervalInSec = 0; + ServiceFabricManagedCmdletBase.WriteVerboseIntervalInSec = 0; ServiceFabricCmdletBase.RunningTest = true; } diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/TestController.cs b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/TestController.cs index 15548b8ce67e..70d74e968d30 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/TestController.cs +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/TestController.cs @@ -21,13 +21,14 @@ using System.Diagnostics; using System.IO; using System.Linq; -using Microsoft.Azure.Management.ServiceFabric; using Microsoft.Azure.Commands.Common.Compute.Version_2018_04; using Microsoft.Azure.Commands.Common.KeyVault.Version2016_10_1; using Microsoft.Azure.Commands.ServiceFabric.Commands; -using Microsoft.Azure.Management.Storage.Version2017_10_01; using Microsoft.Azure.Management.Internal.Network.Version2017_10_01; using Microsoft.Azure.Management.Internal.Resources; +using Microsoft.Azure.Management.ServiceFabric; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.Storage.Version2017_10_01; using Microsoft.Azure.ServiceManagement.Common.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests @@ -40,6 +41,8 @@ public class TestController public ServiceFabricManagementClient ServiceFabricClient { get; private set; } + public ServiceFabricManagedClustersManagementClient ServiceFabricManagedClustersClient { get; private set; } + public ComputeManagementClient ComputeManagementClient { get; private set; } public KeyVaultManagementClient KeyVaultManagementClient { get; private set; } @@ -130,6 +133,12 @@ private void SetupManagementClients(MockContext context) ServiceFabricClient.LongRunningOperationRetryTimeout = 20; } + ServiceFabricManagedClustersClient = GetServiceFabricManagedClustersManagementClient(context); + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + ServiceFabricManagedClustersClient.LongRunningOperationRetryTimeout = 20; + } + ComputeManagementClient = GetComputeManagementClient(context); KeyVaultManagementClient = GetKeyVaultManagementClient(context); StorageManagementClient = GetStorageManagementClient(context); @@ -138,6 +147,7 @@ private void SetupManagementClients(MockContext context) _helper.SetupManagementClients( ServiceFabricClient, + ServiceFabricManagedClustersClient, ComputeManagementClient, KeyVaultManagementClient, StorageManagementClient, @@ -150,6 +160,11 @@ private static ServiceFabricManagementClient GetServiceFabricManagementClient(Mo return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } + private static ServiceFabricManagedClustersManagementClient GetServiceFabricManagedClustersManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + private static ComputeManagementClient GetComputeManagementClient(MockContext context) { return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); diff --git a/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj b/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj index 36fed5497586..b6d626546d74 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj +++ b/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj @@ -14,6 +14,7 @@ + From 13a2e15194d795d1d8bd8b256492d03866b2ed7a Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Gomez Date: Tue, 16 Feb 2021 21:44:18 -0800 Subject: [PATCH 04/13] move to folders in managed clusters --- .../ScenarioTests/ServiceFabricManagedClustersTests.ps1 | 8 ++++---- .../AddAzServiceFabricManagedClusterClientCertificate.cs | 0 .../GetAzServiceFabricManagedCluster.cs | 0 .../NewAzServiceFabricManagedCluster.cs | 0 .../RemoveAzServiceFabricManagedCluster.cs | 0 ...emoveAzServiceFabricManagedClusterClientCertificate.cs | 0 .../SetAzServiceFabricManagedCluster.cs | 0 .../AddAzServiceFabricManagedNodeTypeVMExtension.cs | 0 .../AddAzServiceFabricManagedNodeTypeVMSecret.cs | 0 .../{ => NodeTypes}/GetAzServiceFabricManagedNodeType.cs | 0 .../{ => NodeTypes}/NewAzServiceFabricManagedNodeType.cs | 4 ++-- .../RemoveAzServiceFabricManagedNodeType.cs | 0 .../RemoveAzServiceFabricManagedNodeTypeVMExtension.cs | 0 .../RestartAzServiceFabricManagedNodeType.cs | 0 .../{ => NodeTypes}/SetAzServiceFabricManagedNodeType.cs | 0 15 files changed, 6 insertions(+), 6 deletions(-) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => ManagedClusters}/AddAzServiceFabricManagedClusterClientCertificate.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => ManagedClusters}/GetAzServiceFabricManagedCluster.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => ManagedClusters}/NewAzServiceFabricManagedCluster.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => ManagedClusters}/RemoveAzServiceFabricManagedCluster.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => ManagedClusters}/RemoveAzServiceFabricManagedClusterClientCertificate.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => ManagedClusters}/SetAzServiceFabricManagedCluster.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/AddAzServiceFabricManagedNodeTypeVMExtension.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/AddAzServiceFabricManagedNodeTypeVMSecret.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/GetAzServiceFabricManagedNodeType.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/NewAzServiceFabricManagedNodeType.cs (98%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/RemoveAzServiceFabricManagedNodeType.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/RestartAzServiceFabricManagedNodeType.cs (100%) rename src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/{ => NodeTypes}/SetAzServiceFabricManagedNodeType.cs (100%) diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 index 94f07c6ec4fc..ef3f1a2d7473 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 @@ -17,7 +17,7 @@ function Test-CreateBasicCluster $resourceGroupName = "sfmcps-rg-" + (getAssetname) $clusterName = "sfmcps-" + (getAssetname) $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") - $location = "southcentralus" + $location = "northeurope" $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" @@ -29,7 +29,7 @@ function Test-CreateBasicCluster $pnt = New-AzServiceFabricManagedNodeType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name pnt -InstanceCount 5 -Primary # shouldn't be allowed to remove the only primary node type in the cluster - Assert-ThrowsContains { $pnt | Remove-AzServiceFabricManagedNodeType } "InvalidParameter" + Assert-ThrowsContains { $pnt | Remove-AzServiceFabricManagedNodeType } "BadRequest" $cluster = Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName Assert-AreEqual "Deploying" $cluster.ClusterState @@ -48,7 +48,7 @@ function Test-NodeTypeOperations { $resourceGroupName = "sfmcps-rg-" + (getAssetname) $clusterName = "sfmcps-" + (getAssetname) - $location = "southcentralus" + $location = "northeurope" $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" @@ -85,7 +85,7 @@ function Test-CertAndExtension { $resourceGroupName = "sfmcps-rg-" + (getAssetname) $clusterName = "sfmcps-" + (getAssetname) - $location = "southcentralus" + $location = "northeurope" $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedCluster.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedCluster.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedCluster.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMExtension.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/AddAzServiceFabricManagedNodeTypeVMSecret.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/GetAzServiceFabricManagedNodeType.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs similarity index 98% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs index 0616ecd86e39..ee777c1305d2 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NewAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs @@ -72,8 +72,8 @@ public class NewAzServiceFabricManagedNodeType : ServiceFabricManagedCmdletBase [Parameter(Mandatory = false, HelpMessage = "Ephemeral end port of a range of ports.")] public int? EphemeralEndPort { get; set; } - [Parameter(Mandatory = false, HelpMessage = "The size of virtual machines in the pool. All virtual machines in a pool are the same size. Default: Standard_D2.")] - public string VmSize { get; set; } = "Standard_D2"; + [Parameter(Mandatory = false, HelpMessage = "The size of virtual machines in the pool. All virtual machines in a pool are the same size. Default: Standard_D2_v2.")] + public string VmSize { get; set; } = "Standard_D2_v2"; [Parameter(Mandatory = false, HelpMessage = "The publisher of the Azure Virtual Machines Marketplace image. Default: MicrosoftWindowsServer.")] public string VmImagePublisher { get; set; } = "MicrosoftWindowsServer"; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeType.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RestartAzServiceFabricManagedNodeType.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/RestartAzServiceFabricManagedNodeType.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RestartAzServiceFabricManagedNodeType.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs similarity index 100% rename from src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/SetAzServiceFabricManagedNodeType.cs rename to src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs From 7a915f9d2b7c7ea2c4965282ba4ea8d65917abe9 Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Gomez Date: Tue, 16 Feb 2021 21:49:54 -0800 Subject: [PATCH 05/13] re-record managed clusters tests --- .../TestCertAndExtension.json | 6491 ++++++++-------- .../TestCreateBasicCluster.json | 4587 +++++++----- .../TestNodeTypeOperations.json | 6600 ++++++++++------- 3 files changed, 9429 insertions(+), 8249 deletions(-) diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCertAndExtension.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCertAndExtension.json index b5d1a0309d33..90f2188af32b 100644 --- a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCertAndExtension.json +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCertAndExtension.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "104ea578-d2a3-4010-8da5-f01a91836764" + "5a5d51c2-2da9-4e19-ae1c-8b5b49bd5377" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "gateway" ], "x-ms-request-id": [ - "28276262-2118-4f35-9c18-ef2c2d039494" + "632a557e-3303-482a-8965-e7aa5df480bb" ], "x-ms-correlation-request-id": [ - "28276262-2118-4f35-9c18-ef2c2d039494" + "632a557e-3303-482a-8965-e7aa5df480bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192424Z:28276262-2118-4f35-9c18-ef2c2d039494" + "WESTCENTRALUS:20210217T022751Z:632a557e-3303-482a-8965-e7aa5df480bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 01 Sep 2020 19:24:24 GMT" + "Wed, 17 Feb 2021 02:27:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps7607' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8351' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2a44fe2-068b-4157-90b2-de09b01a0026" + "4372d0e4-a540-41d0-a254-e53dabd78dad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "gateway" ], "x-ms-request-id": [ - "47cf7f61-cb40-47aa-aa57-e22db203b57a" + "a86ba35c-6eea-4b68-a671-c0fb4eca43b4" ], "x-ms-correlation-request-id": [ - "47cf7f61-cb40-47aa-aa57-e22db203b57a" + "a86ba35c-6eea-4b68-a671-c0fb4eca43b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192424Z:47cf7f61-cb40-47aa-aa57-e22db203b57a" + "WESTCENTRALUS:20210217T022751Z:a86ba35c-6eea-4b68-a671-c0fb4eca43b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Tue, 01 Sep 2020 19:24:24 GMT" + "Wed, 17 Feb 2021 02:27:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,20 +117,23 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps7607' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8351' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -147,25 +150,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11886" ], "x-ms-request-id": [ - "150ddd84-ea61-4451-8d57-39998b88a293" + "89444aa9-e794-4fac-b1c9-baafcb94555f" ], "x-ms-correlation-request-id": [ - "150ddd84-ea61-4451-8d57-39998b88a293" + "89444aa9-e794-4fac-b1c9-baafcb94555f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192749Z:150ddd84-ea61-4451-8d57-39998b88a293" + "WESTCENTRALUS:20210217T023123Z:89444aa9-e794-4fac-b1c9-baafcb94555f" ], "Date": [ - "Tue, 01 Sep 2020 19:27:49 GMT" + "Wed, 17 Feb 2021 02:31:22 GMT" ], "Content-Length": [ - "960" + "1071" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,26 +178,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c98c9be4-94bd-4e3b-b129-b7dbafcc1c5f" + "37f0fca7-521c-4127-a724-b328cc4d7e59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -210,25 +214,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11801" ], "x-ms-request-id": [ - "00dd99e1-ab67-453a-adac-1a63c7124eb4" + "b38fca20-6830-4936-ab74-73aab43e8b4f" ], "x-ms-correlation-request-id": [ - "00dd99e1-ab67-453a-adac-1a63c7124eb4" + "b38fca20-6830-4936-ab74-73aab43e8b4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194555Z:00dd99e1-ab67-453a-adac-1a63c7124eb4" + "WESTCENTRALUS:20210217T024735Z:b38fca20-6830-4936-ab74-73aab43e8b4f" ], "Date": [ - "Tue, 01 Sep 2020 19:45:55 GMT" + "Wed, 17 Feb 2021 02:47:35 GMT" ], "Content-Length": [ - "993" + "1104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,20 +242,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -267,25 +275,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11750" ], "x-ms-request-id": [ - "d21943a9-5377-4228-8f7e-c80c4308b5f9" + "f73f5024-37e8-4512-8ca5-fc99d04403e0" ], "x-ms-correlation-request-id": [ - "d21943a9-5377-4228-8f7e-c80c4308b5f9" + "f73f5024-37e8-4512-8ca5-fc99d04403e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200023Z:d21943a9-5377-4228-8f7e-c80c4308b5f9" + "WESTCENTRALUS:20210217T030002Z:f73f5024-37e8-4512-8ca5-fc99d04403e0" ], "Date": [ - "Tue, 01 Sep 2020 20:00:22 GMT" + "Wed, 17 Feb 2021 03:00:02 GMT" ], "Content-Length": [ - "1105" + "1216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,26 +303,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28342c31-82f7-4d43-9b21-371ea8c5ac82" + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -330,25 +339,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11749" ], "x-ms-request-id": [ - "88ee7be4-6ceb-4882-b584-3a6e13ff5ddc" + "d0ec5021-8460-4a05-9db6-fedc26036662" ], "x-ms-correlation-request-id": [ - "88ee7be4-6ceb-4882-b584-3a6e13ff5ddc" + "d0ec5021-8460-4a05-9db6-fedc26036662" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200023Z:88ee7be4-6ceb-4882-b584-3a6e13ff5ddc" + "WESTCENTRALUS:20210217T030003Z:d0ec5021-8460-4a05-9db6-fedc26036662" ], "Date": [ - "Tue, 01 Sep 2020 20:00:23 GMT" + "Wed, 17 Feb 2021 03:00:02 GMT" ], "Content-Length": [ - "1105" + "1216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,20 +367,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -387,25 +400,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "11701" ], "x-ms-request-id": [ - "8c5bd9c4-fea2-4983-9f39-2500dcec47eb" + "08ea8c6b-e782-4e5d-9fe5-79b9a6a1d15c" ], "x-ms-correlation-request-id": [ - "8c5bd9c4-fea2-4983-9f39-2500dcec47eb" + "08ea8c6b-e782-4e5d-9fe5-79b9a6a1d15c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201347Z:8c5bd9c4-fea2-4983-9f39-2500dcec47eb" + "WESTCENTRALUS:20210217T031232Z:08ea8c6b-e782-4e5d-9fe5-79b9a6a1d15c" ], "Date": [ - "Tue, 01 Sep 2020 20:13:47 GMT" + "Wed, 17 Feb 2021 03:12:32 GMT" ], "Content-Length": [ - "993" + "1104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -414,26 +428,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bfb329-9ca5-417c-8245-eabf969ef9f8" + "83f84baa-1a34-413c-a1e2-7f3e7b5f680e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -450,25 +464,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" + "11700" ], "x-ms-request-id": [ - "cc15b450-fd00-4c5c-ae2f-44eb7ac4c515" + "00ddbd66-32af-4886-8dd5-0995ff92ff17" ], "x-ms-correlation-request-id": [ - "cc15b450-fd00-4c5c-ae2f-44eb7ac4c515" + "00ddbd66-32af-4886-8dd5-0995ff92ff17" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201348Z:cc15b450-fd00-4c5c-ae2f-44eb7ac4c515" + "WESTCENTRALUS:20210217T031232Z:00ddbd66-32af-4886-8dd5-0995ff92ff17" ], "Date": [ - "Tue, 01 Sep 2020 20:13:48 GMT" + "Wed, 17 Feb 2021 03:12:32 GMT" ], "Content-Length": [ - "993" + "1104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -477,26 +492,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczc2MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczgzNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32c04979-73d4-4558-aadc-b099cbe78ed3" + "4372d0e4-a540-41d0-a254-e53dabd78dad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -510,16 +525,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11874" ], "x-ms-request-id": [ - "a12d7377-0a02-4634-9478-308ec00dc04f" + "4a483d37-2e6d-4c68-b399-c31ae9b0c8c7" ], "x-ms-correlation-request-id": [ - "a12d7377-0a02-4634-9478-308ec00dc04f" + "4a483d37-2e6d-4c68-b399-c31ae9b0c8c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192424Z:a12d7377-0a02-4634-9478-308ec00dc04f" + "WESTCENTRALUS:20210217T022751Z:4a483d37-2e6d-4c68-b399-c31ae9b0c8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,7 +543,7 @@ "nosniff" ], "Date": [ - "Tue, 01 Sep 2020 19:24:24 GMT" + "Wed, 17 Feb 2021 02:27:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,32 +555,32 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps7607' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8351' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczc2MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczgzNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"northeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d163f27-d094-4a26-8864-e2f4c363e538" + "4372d0e4-a540-41d0-a254-e53dabd78dad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "33" ] }, "ResponseHeaders": { @@ -579,13 +594,13 @@ "1199" ], "x-ms-request-id": [ - "1d145164-5399-4598-bc93-b81626a77134" + "0c3aab0c-e004-41d4-b736-d4630b76790c" ], "x-ms-correlation-request-id": [ - "1d145164-5399-4598-bc93-b81626a77134" + "0c3aab0c-e004-41d4-b736-d4630b76790c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192425Z:1d145164-5399-4598-bc93-b81626a77134" + "WESTCENTRALUS:20210217T022754Z:0c3aab0c-e004-41d4-b736-d4630b76790c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594,10 +609,10 @@ "nosniff" ], "Date": [ - "Tue, 01 Sep 2020 19:24:25 GMT" + "Wed, 17 Feb 2021 02:27:53 GMT" ], "Content-Length": [ - "193" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,32 +621,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607\",\r\n \"name\": \"sfmcps-rg-ps7607\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351\",\r\n \"name\": \"sfmcps-rg-ps8351\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"useTestExtension\": false,\r\n \"clusterUpgradeMode\": \"Automatic\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"northeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d792294f-08ea-4da0-bc81-a68dcf9d8b82" + "4372d0e4-a540-41d0-a254-e53dabd78dad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "495" + "420" ] }, "ResponseHeaders": { @@ -645,31 +660,31 @@ "nosniff" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "49751e7b-ab2f-4e06-a380-47f94125f9e9" + "bdfa2df0-5ac5-4a00-b438-4b2d3607e7d0" ], "x-ms-correlation-request-id": [ - "49751e7b-ab2f-4e06-a380-47f94125f9e9" + "bdfa2df0-5ac5-4a00-b438-4b2d3607e7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192428Z:49751e7b-ab2f-4e06-a380-47f94125f9e9" + "WESTCENTRALUS:20210217T022801Z:bdfa2df0-5ac5-4a00-b438-4b2d3607e7d0" ], "Date": [ - "Tue, 01 Sep 2020 19:24:28 GMT" + "Wed, 17 Feb 2021 02:28:01 GMT" ], "Content-Length": [ - "774" + "896" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,32 +693,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"clusterCodeVersion\": \"7.1.458.9590\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"enableAutoOSUpgrade\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90dff73d-589c-4d06-be95-9f8cb4c2378e" + "37f0fca7-521c-4127-a724-b328cc4d7e59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "552" + "653" ] }, "ResponseHeaders": { @@ -714,10 +729,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview" ], "X-Content-Type-Options": [ "nosniff" @@ -726,25 +741,25 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-request-id": [ - "87bbf71a-649a-4abb-b17b-19fa586bf56d" + "239755a9-9f08-4f14-b97c-b1ccabd37b38" ], "x-ms-correlation-request-id": [ - "87bbf71a-649a-4abb-b17b-19fa586bf56d" + "239755a9-9f08-4f14-b97c-b1ccabd37b38" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194559Z:87bbf71a-649a-4abb-b17b-19fa586bf56d" + "WESTCENTRALUS:20210217T024735Z:239755a9-9f08-4f14-b97c-b1ccabd37b38" ], "Date": [ - "Tue, 01 Sep 2020 19:45:59 GMT" + "Wed, 17 Feb 2021 02:47:35 GMT" ], "Content-Length": [ - "1104" + "1215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,32 +768,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"clusterCodeVersion\": \"7.1.458.9590\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"enableAutoOSUpgrade\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "de4747c3-6615-449a-aa68-5698fe15ccda" + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "440" + "541" ] }, "ResponseHeaders": { @@ -789,10 +804,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview" ], "X-Content-Type-Options": [ "nosniff" @@ -801,25 +816,25 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-request-id": [ - "e448544a-543f-47a0-afbd-f965e1c059fe" + "79cf3dd3-6ca3-41eb-9210-14a09ae43413" ], "x-ms-correlation-request-id": [ - "e448544a-543f-47a0-afbd-f965e1c059fe" + "79cf3dd3-6ca3-41eb-9210-14a09ae43413" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200024Z:e448544a-543f-47a0-afbd-f965e1c059fe" + "WESTCENTRALUS:20210217T030003Z:79cf3dd3-6ca3-41eb-9210-14a09ae43413" ], "Date": [ - "Tue, 01 Sep 2020 20:00:23 GMT" + "Wed, 17 Feb 2021 03:00:03 GMT" ], "Content-Length": [ - "992" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,20 +843,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -851,29 +869,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11906" ], "x-ms-request-id": [ - "afbc4cae-3dab-484d-a890-f25cda34a0fb" + "b23e2aa1-3e44-428e-a56f-6e78aaf6f13e" ], "x-ms-correlation-request-id": [ - "afbc4cae-3dab-484d-a890-f25cda34a0fb" + "b23e2aa1-3e44-428e-a56f-6e78aaf6f13e" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192448Z:afbc4cae-3dab-484d-a890-f25cda34a0fb" + "WESTCENTRALUS:20210217T022821Z:b23e2aa1-3e44-428e-a56f-6e78aaf6f13e" ], "Date": [ - "Tue, 01 Sep 2020 19:24:48 GMT" + "Wed, 17 Feb 2021 02:28:21 GMT" ], "Content-Length": [ "282" @@ -885,20 +904,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -908,29 +930,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11905" ], "x-ms-request-id": [ - "227c9306-65f7-47a9-a341-8908f7d8aa69" + "bea91db2-b8d0-4a68-b13a-09f6e351747b" ], "x-ms-correlation-request-id": [ - "227c9306-65f7-47a9-a341-8908f7d8aa69" + "bea91db2-b8d0-4a68-b13a-09f6e351747b" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192508Z:227c9306-65f7-47a9-a341-8908f7d8aa69" + "WESTCENTRALUS:20210217T022841Z:bea91db2-b8d0-4a68-b13a-09f6e351747b" ], "Date": [ - "Tue, 01 Sep 2020 19:25:08 GMT" + "Wed, 17 Feb 2021 02:28:41 GMT" ], "Content-Length": [ "282" @@ -942,20 +965,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -965,29 +991,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11903" ], "x-ms-request-id": [ - "db896677-7c34-43f2-bead-b9a3d03a8d6b" + "a5dd68fe-f0ec-450f-90fa-0d2b72ad25ec" ], "x-ms-correlation-request-id": [ - "db896677-7c34-43f2-bead-b9a3d03a8d6b" + "a5dd68fe-f0ec-450f-90fa-0d2b72ad25ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192528Z:db896677-7c34-43f2-bead-b9a3d03a8d6b" + "WESTCENTRALUS:20210217T022901Z:a5dd68fe-f0ec-450f-90fa-0d2b72ad25ec" ], "Date": [ - "Tue, 01 Sep 2020 19:25:28 GMT" + "Wed, 17 Feb 2021 02:29:01 GMT" ], "Content-Length": [ "282" @@ -999,20 +1026,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1022,29 +1052,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11897" ], "x-ms-request-id": [ - "54add021-be89-42e1-bb3b-148cb9fb57b0" + "40fbb3e6-9004-46d4-99f7-fde670a4afcd" ], "x-ms-correlation-request-id": [ - "54add021-be89-42e1-bb3b-148cb9fb57b0" + "40fbb3e6-9004-46d4-99f7-fde670a4afcd" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192548Z:54add021-be89-42e1-bb3b-148cb9fb57b0" + "WESTCENTRALUS:20210217T022922Z:40fbb3e6-9004-46d4-99f7-fde670a4afcd" ], "Date": [ - "Tue, 01 Sep 2020 19:25:48 GMT" + "Wed, 17 Feb 2021 02:29:21 GMT" ], "Content-Length": [ "282" @@ -1056,20 +1087,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1079,29 +1113,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11893" ], "x-ms-request-id": [ - "9b9c1f6b-ca44-4ba0-a947-e99b3edbbb2f" + "dd482fc0-d4cd-4315-958f-2dbc220a5213" ], "x-ms-correlation-request-id": [ - "9b9c1f6b-ca44-4ba0-a947-e99b3edbbb2f" + "dd482fc0-d4cd-4315-958f-2dbc220a5213" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192608Z:9b9c1f6b-ca44-4ba0-a947-e99b3edbbb2f" + "WESTCENTRALUS:20210217T022942Z:dd482fc0-d4cd-4315-958f-2dbc220a5213" ], "Date": [ - "Tue, 01 Sep 2020 19:26:08 GMT" + "Wed, 17 Feb 2021 02:29:42 GMT" ], "Content-Length": [ "282" @@ -1113,20 +1148,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1136,29 +1174,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11892" ], "x-ms-request-id": [ - "b7758260-6c6a-4a38-9500-7668ad5474cc" + "9f1801ce-9a7d-4e96-b8c2-2a88f282eaf2" ], "x-ms-correlation-request-id": [ - "b7758260-6c6a-4a38-9500-7668ad5474cc" + "9f1801ce-9a7d-4e96-b8c2-2a88f282eaf2" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192629Z:b7758260-6c6a-4a38-9500-7668ad5474cc" + "WESTCENTRALUS:20210217T023002Z:9f1801ce-9a7d-4e96-b8c2-2a88f282eaf2" ], "Date": [ - "Tue, 01 Sep 2020 19:26:28 GMT" + "Wed, 17 Feb 2021 02:30:02 GMT" ], "Content-Length": [ "282" @@ -1170,20 +1209,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1193,29 +1235,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11891" ], "x-ms-request-id": [ - "5555e2df-9d27-4ed2-be52-5e2b6c543cbd" + "46846761-5e93-4b7d-9bae-11795a68dff4" ], "x-ms-correlation-request-id": [ - "5555e2df-9d27-4ed2-be52-5e2b6c543cbd" + "46846761-5e93-4b7d-9bae-11795a68dff4" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192649Z:5555e2df-9d27-4ed2-be52-5e2b6c543cbd" + "WESTCENTRALUS:20210217T023022Z:46846761-5e93-4b7d-9bae-11795a68dff4" ], "Date": [ - "Tue, 01 Sep 2020 19:26:48 GMT" + "Wed, 17 Feb 2021 02:30:22 GMT" ], "Content-Length": [ "282" @@ -1227,20 +1270,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1250,29 +1296,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11890" ], "x-ms-request-id": [ - "bdf941d8-ba81-4d89-811a-855645ef4aa5" + "5dfd0159-4353-4e8c-9aaf-7ff2462a0368" ], "x-ms-correlation-request-id": [ - "bdf941d8-ba81-4d89-811a-855645ef4aa5" + "5dfd0159-4353-4e8c-9aaf-7ff2462a0368" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192709Z:bdf941d8-ba81-4d89-811a-855645ef4aa5" + "WESTCENTRALUS:20210217T023042Z:5dfd0159-4353-4e8c-9aaf-7ff2462a0368" ], "Date": [ - "Tue, 01 Sep 2020 19:27:09 GMT" + "Wed, 17 Feb 2021 02:30:42 GMT" ], "Content-Length": [ "282" @@ -1284,20 +1331,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1307,29 +1357,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11889" ], "x-ms-request-id": [ - "12e04f9d-c38b-4327-8fc7-5cb87e19589d" + "61ead906-e9ec-4a49-8f28-add3c395f7cc" ], "x-ms-correlation-request-id": [ - "12e04f9d-c38b-4327-8fc7-5cb87e19589d" + "61ead906-e9ec-4a49-8f28-add3c395f7cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192729Z:12e04f9d-c38b-4327-8fc7-5cb87e19589d" + "WESTCENTRALUS:20210217T023102Z:61ead906-e9ec-4a49-8f28-add3c395f7cc" ], "Date": [ - "Tue, 01 Sep 2020 19:27:29 GMT" + "Wed, 17 Feb 2021 02:31:02 GMT" ], "Content-Length": [ "282" @@ -1341,20 +1392,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 95.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/436c0000-7189-4566-8181-c70f6178946d?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzNmMwMDAwLTcxODktNDU2Ni04MTgxLWM3MGY2MTc4OTQ2ZD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d1f70003-4662-4515-a581-1e261ae5260f?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxZjcwMDAzLTQ2NjItNDUxNS1hNTgxLTFlMjYxYWU1MjYwZj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4372d0e4-a540-41d0-a254-e53dabd78dad" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1364,29 +1418,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11887" ], "x-ms-request-id": [ - "ded5a1fb-2c34-4e58-8131-fa4290e51ac7" + "74e6d7f0-c9d0-436b-8386-f1a27bc04d76" ], "x-ms-correlation-request-id": [ - "ded5a1fb-2c34-4e58-8131-fa4290e51ac7" + "74e6d7f0-c9d0-436b-8386-f1a27bc04d76" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192749Z:ded5a1fb-2c34-4e58-8131-fa4290e51ac7" + "WESTCENTRALUS:20210217T023123Z:74e6d7f0-c9d0-436b-8386-f1a27bc04d76" ], "Date": [ - "Tue, 01 Sep 2020 19:27:49 GMT" + "Wed, 17 Feb 2021 02:31:22 GMT" ], "Content-Length": [ "294" @@ -1398,26 +1453,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"436c0000-7189-4566-8181-c70f6178946d\",\r\n \"startTime\": \"2020-09-01T19:24:27.7185228Z\",\r\n \"endTime\": \"2020-09-01T19:27:31.4628586Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1f70003-4662-4515-a581-1e261ae5260f\",\r\n \"startTime\": \"2021-02-17T02:28:00.5114456Z\",\r\n \"endTime\": \"2021-02-17T02:31:02.8480824Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e00ceff0-0403-4fa7-9087-e34b8d554fbd" + "bd871814-cec2-4419-98c7-350d6dc45999" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1427,9 +1482,6 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "19881824-53c0-4582-a963-dcd9401d31cf" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1437,19 +1489,23 @@ "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11885" + ], + "x-ms-request-id": [ + "7af807c2-234f-4220-8365-946491138a25" ], "x-ms-correlation-request-id": [ - "1046d2ff-0fde-4d4d-a6fd-51bb69fe59d3" + "7af807c2-234f-4220-8365-946491138a25" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192749Z:1046d2ff-0fde-4d4d-a6fd-51bb69fe59d3" + "WESTCENTRALUS:20210217T023123Z:7af807c2-234f-4220-8365-946491138a25" ], "Date": [ - "Tue, 01 Sep 2020 19:27:49 GMT" + "Wed, 17 Feb 2021 02:31:22 GMT" ], "Content-Length": [ "139" @@ -1461,20 +1517,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData e26609a7-8133-4f7b-a0d8-999c73779bee_pnt could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData f66b5d6f-596c-4013-b898-a05c9ac15995_pnt could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1484,29 +1543,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11848" ], "x-ms-request-id": [ - "9a610314-0238-4951-8090-428b3d50d09e" + "96b75fd8-1a76-440f-ae75-90b648291d0e" ], "x-ms-correlation-request-id": [ - "9a610314-0238-4951-8090-428b3d50d09e" + "96b75fd8-1a76-440f-ae75-90b648291d0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193512Z:9a610314-0238-4951-8090-428b3d50d09e" + "WESTCENTRALUS:20210217T023828Z:96b75fd8-1a76-440f-ae75-90b648291d0e" ], "Date": [ - "Tue, 01 Sep 2020 19:35:11 GMT" + "Wed, 17 Feb 2021 02:38:28 GMT" ], "Content-Length": [ "694" @@ -1518,26 +1578,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae9c6060-bcc8-4ebf-9475-d1c0a759459c" + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1547,29 +1607,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11847" ], "x-ms-request-id": [ - "5cfe7abc-ba0a-4f9d-8de9-55e04723c724" + "e6dcd2a0-699a-41d5-910c-13e30b1b59f9" ], "x-ms-correlation-request-id": [ - "5cfe7abc-ba0a-4f9d-8de9-55e04723c724" + "e6dcd2a0-699a-41d5-910c-13e30b1b59f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193512Z:5cfe7abc-ba0a-4f9d-8de9-55e04723c724" + "WESTCENTRALUS:20210217T023829Z:e6dcd2a0-699a-41d5-910c-13e30b1b59f9" ], "Date": [ - "Tue, 01 Sep 2020 19:35:12 GMT" + "Wed, 17 Feb 2021 02:38:28 GMT" ], "Content-Length": [ "694" @@ -1581,20 +1642,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1604,29 +1668,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11803" ], "x-ms-request-id": [ - "d58b9366-068f-4c06-9191-31d82d10376c" + "429dae0f-b2ac-4fd3-8d5d-da67178a4533" ], "x-ms-correlation-request-id": [ - "d58b9366-068f-4c06-9191-31d82d10376c" + "429dae0f-b2ac-4fd3-8d5d-da67178a4533" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194555Z:d58b9366-068f-4c06-9191-31d82d10376c" + "WESTCENTRALUS:20210217T024734Z:429dae0f-b2ac-4fd3-8d5d-da67178a4533" ], "Date": [ - "Tue, 01 Sep 2020 19:45:55 GMT" + "Wed, 17 Feb 2021 02:47:34 GMT" ], "Content-Length": [ "965" @@ -1638,26 +1703,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98645904-b06c-4b4d-a231-2580d0e0721f" + "f1ce9a46-1b66-48a7-ad7d-424f1bd55aee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1667,29 +1732,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11802" ], "x-ms-request-id": [ - "96aafdb6-b3fe-4da5-a83b-e6a967a89743" + "5b4afef9-26ff-4896-813d-9ce87a29f1aa" ], "x-ms-correlation-request-id": [ - "96aafdb6-b3fe-4da5-a83b-e6a967a89743" + "5b4afef9-26ff-4896-813d-9ce87a29f1aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194555Z:96aafdb6-b3fe-4da5-a83b-e6a967a89743" + "WESTCENTRALUS:20210217T024735Z:5b4afef9-26ff-4896-813d-9ce87a29f1aa" ], "Date": [ - "Tue, 01 Sep 2020 19:45:55 GMT" + "Wed, 17 Feb 2021 02:47:34 GMT" ], "Content-Length": [ "965" @@ -1701,32 +1767,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "224c3b96-eb08-411c-aec1-d755aa736474" + "bd871814-cec2-4419-98c7-350d6dc45999" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "296" + "299" ] }, "ResponseHeaders": { @@ -1737,31 +1803,32 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "576b3d58-fd83-4c62-a0ba-6fb2e4065679" + "ea4fc5fc-ece1-4d0b-a6bc-1b3ef345d018" ], "x-ms-correlation-request-id": [ - "576b3d58-fd83-4c62-a0ba-6fb2e4065679" + "ea4fc5fc-ece1-4d0b-a6bc-1b3ef345d018" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192749Z:576b3d58-fd83-4c62-a0ba-6fb2e4065679" + "WESTCENTRALUS:20210217T023124Z:ea4fc5fc-ece1-4d0b-a6bc-1b3ef345d018" ], "Date": [ - "Tue, 01 Sep 2020 19:27:49 GMT" + "Wed, 17 Feb 2021 02:31:23 GMT" ], "Content-Length": [ "693" @@ -1773,32 +1840,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6c0ae277-3a2d-4dfa-84e5-e7873c6f3e70" + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "637" + "640" ] }, "ResponseHeaders": { @@ -1809,34 +1876,35 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "3b3e3875-310d-441d-983b-9b7eaab42b12" + "30738662-4a9e-4278-bc65-8e61d8870ead" ], "x-ms-correlation-request-id": [ - "3b3e3875-310d-441d-983b-9b7eaab42b12" + "30738662-4a9e-4278-bc65-8e61d8870ead" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193512Z:3b3e3875-310d-441d-983b-9b7eaab42b12" + "WESTCENTRALUS:20210217T023829Z:30738662-4a9e-4278-bc65-8e61d8870ead" ], "Date": [ - "Tue, 01 Sep 2020 19:35:12 GMT" + "Wed, 17 Feb 2021 02:38:29 GMT" ], "Content-Length": [ "964" @@ -1848,20 +1916,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1871,29 +1942,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11883" ], "x-ms-request-id": [ - "17cbd254-e062-417a-a11c-b7ef4f18f402" + "17e412c6-0d2c-4035-850c-f0ffc0dc678a" ], "x-ms-correlation-request-id": [ - "17cbd254-e062-417a-a11c-b7ef4f18f402" + "17e412c6-0d2c-4035-850c-f0ffc0dc678a" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192810Z:17cbd254-e062-417a-a11c-b7ef4f18f402" + "WESTCENTRALUS:20210217T023144Z:17e412c6-0d2c-4035-850c-f0ffc0dc678a" ], "Date": [ - "Tue, 01 Sep 2020 19:28:09 GMT" + "Wed, 17 Feb 2021 02:31:44 GMT" ], "Content-Length": [ "282" @@ -1905,20 +1977,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1928,29 +2003,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11882" ], "x-ms-request-id": [ - "d754beaa-955f-4ec9-95be-b1cab04ef6d0" + "2285bedc-86fa-46f9-a71f-2083826d8ed2" ], "x-ms-correlation-request-id": [ - "d754beaa-955f-4ec9-95be-b1cab04ef6d0" + "2285bedc-86fa-46f9-a71f-2083826d8ed2" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192830Z:d754beaa-955f-4ec9-95be-b1cab04ef6d0" + "WESTCENTRALUS:20210217T023204Z:2285bedc-86fa-46f9-a71f-2083826d8ed2" ], "Date": [ - "Tue, 01 Sep 2020 19:28:29 GMT" + "Wed, 17 Feb 2021 02:32:04 GMT" ], "Content-Length": [ "282" @@ -1962,20 +2038,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1985,29 +2064,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" ], "x-ms-request-id": [ - "168c51df-918d-4a3f-907a-2cded8c7c70a" + "60808ea9-6b5c-44a1-b507-a1ae4e4f7cb3" ], "x-ms-correlation-request-id": [ - "168c51df-918d-4a3f-907a-2cded8c7c70a" + "60808ea9-6b5c-44a1-b507-a1ae4e4f7cb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192850Z:168c51df-918d-4a3f-907a-2cded8c7c70a" + "WESTCENTRALUS:20210217T023224Z:60808ea9-6b5c-44a1-b507-a1ae4e4f7cb3" ], "Date": [ - "Tue, 01 Sep 2020 19:28:49 GMT" + "Wed, 17 Feb 2021 02:32:24 GMT" ], "Content-Length": [ "282" @@ -2019,20 +2099,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2042,29 +2125,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11879" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8f34f15e-8ca7-4d5c-9f17-3131131ab8c5" + "218e98b3-b761-46f4-83ab-9838f7f9c4b6" ], "x-ms-correlation-request-id": [ - "8f34f15e-8ca7-4d5c-9f17-3131131ab8c5" + "218e98b3-b761-46f4-83ab-9838f7f9c4b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192910Z:8f34f15e-8ca7-4d5c-9f17-3131131ab8c5" + "WESTCENTRALUS:20210217T023244Z:218e98b3-b761-46f4-83ab-9838f7f9c4b6" ], "Date": [ - "Tue, 01 Sep 2020 19:29:09 GMT" + "Wed, 17 Feb 2021 02:32:44 GMT" ], "Content-Length": [ "282" @@ -2076,20 +2160,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2099,29 +2186,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11878" ], "x-ms-request-id": [ - "0ff9b893-0b7d-4432-b3ee-e5d46a0bdb80" + "1c69e9b3-98aa-45f2-88b2-78f262608116" ], "x-ms-correlation-request-id": [ - "0ff9b893-0b7d-4432-b3ee-e5d46a0bdb80" + "1c69e9b3-98aa-45f2-88b2-78f262608116" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192930Z:0ff9b893-0b7d-4432-b3ee-e5d46a0bdb80" + "WESTCENTRALUS:20210217T023305Z:1c69e9b3-98aa-45f2-88b2-78f262608116" ], "Date": [ - "Tue, 01 Sep 2020 19:29:29 GMT" + "Wed, 17 Feb 2021 02:33:04 GMT" ], "Content-Length": [ "282" @@ -2133,20 +2221,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2156,29 +2247,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11877" ], "x-ms-request-id": [ - "4be3d0c3-7371-4967-84d9-419753429d76" + "59f54fd2-46ca-4e09-9c8a-91414239d618" ], "x-ms-correlation-request-id": [ - "4be3d0c3-7371-4967-84d9-419753429d76" + "59f54fd2-46ca-4e09-9c8a-91414239d618" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T192950Z:4be3d0c3-7371-4967-84d9-419753429d76" + "WESTCENTRALUS:20210217T023325Z:59f54fd2-46ca-4e09-9c8a-91414239d618" ], "Date": [ - "Tue, 01 Sep 2020 19:29:50 GMT" + "Wed, 17 Feb 2021 02:33:25 GMT" ], "Content-Length": [ "282" @@ -2190,20 +2282,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2213,29 +2308,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11874" ], "x-ms-request-id": [ - "e11819a5-c780-4da0-9883-3afcb69edd32" + "9338c698-dda1-496d-a0f8-2005894f2028" ], "x-ms-correlation-request-id": [ - "e11819a5-c780-4da0-9883-3afcb69edd32" + "9338c698-dda1-496d-a0f8-2005894f2028" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193010Z:e11819a5-c780-4da0-9883-3afcb69edd32" + "WESTCENTRALUS:20210217T023345Z:9338c698-dda1-496d-a0f8-2005894f2028" ], "Date": [ - "Tue, 01 Sep 2020 19:30:10 GMT" + "Wed, 17 Feb 2021 02:33:45 GMT" ], "Content-Length": [ "282" @@ -2247,20 +2343,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2270,29 +2369,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11871" ], "x-ms-request-id": [ - "64b368d0-f955-4a2b-af82-9af82eacac44" + "b6926d65-fa68-479b-a5f5-d790bb275468" ], "x-ms-correlation-request-id": [ - "64b368d0-f955-4a2b-af82-9af82eacac44" + "b6926d65-fa68-479b-a5f5-d790bb275468" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193030Z:64b368d0-f955-4a2b-af82-9af82eacac44" + "WESTCENTRALUS:20210217T023405Z:b6926d65-fa68-479b-a5f5-d790bb275468" ], "Date": [ - "Tue, 01 Sep 2020 19:30:30 GMT" + "Wed, 17 Feb 2021 02:34:05 GMT" ], "Content-Length": [ "282" @@ -2304,20 +2404,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2327,29 +2430,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11869" ], "x-ms-request-id": [ - "6393be40-7134-4c5e-8098-ef183515d0aa" + "cad09ef5-f7b6-44a6-90c9-f0e770cb39a7" ], "x-ms-correlation-request-id": [ - "6393be40-7134-4c5e-8098-ef183515d0aa" + "cad09ef5-f7b6-44a6-90c9-f0e770cb39a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193050Z:6393be40-7134-4c5e-8098-ef183515d0aa" + "WESTCENTRALUS:20210217T023426Z:cad09ef5-f7b6-44a6-90c9-f0e770cb39a7" ], "Date": [ - "Tue, 01 Sep 2020 19:30:50 GMT" + "Wed, 17 Feb 2021 02:34:25 GMT" ], "Content-Length": [ "282" @@ -2361,20 +2465,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2384,29 +2491,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11868" ], "x-ms-request-id": [ - "e23973d7-9f1a-43e6-a47b-bad5cdf414cd" + "3c27d88e-23a9-4e03-b346-9be192641ddc" ], "x-ms-correlation-request-id": [ - "e23973d7-9f1a-43e6-a47b-bad5cdf414cd" + "3c27d88e-23a9-4e03-b346-9be192641ddc" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193110Z:e23973d7-9f1a-43e6-a47b-bad5cdf414cd" + "WESTCENTRALUS:20210217T023446Z:3c27d88e-23a9-4e03-b346-9be192641ddc" ], "Date": [ - "Tue, 01 Sep 2020 19:31:10 GMT" + "Wed, 17 Feb 2021 02:34:46 GMT" ], "Content-Length": [ "282" @@ -2418,20 +2526,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2441,29 +2552,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11866" ], "x-ms-request-id": [ - "938c89f5-3cce-4daa-829b-8d382ee5dde0" + "e53a3a56-2626-4ee4-8388-dd667198487c" ], "x-ms-correlation-request-id": [ - "938c89f5-3cce-4daa-829b-8d382ee5dde0" + "e53a3a56-2626-4ee4-8388-dd667198487c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193130Z:938c89f5-3cce-4daa-829b-8d382ee5dde0" + "WESTCENTRALUS:20210217T023506Z:e53a3a56-2626-4ee4-8388-dd667198487c" ], "Date": [ - "Tue, 01 Sep 2020 19:31:30 GMT" + "Wed, 17 Feb 2021 02:35:06 GMT" ], "Content-Length": [ "282" @@ -2475,20 +2587,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2498,29 +2613,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11865" ], "x-ms-request-id": [ - "f3d734b7-2f06-45f7-8fbf-04e8c7491237" + "c015fbe2-6b45-42d6-85e7-39bf910f57ae" ], "x-ms-correlation-request-id": [ - "f3d734b7-2f06-45f7-8fbf-04e8c7491237" + "c015fbe2-6b45-42d6-85e7-39bf910f57ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193151Z:f3d734b7-2f06-45f7-8fbf-04e8c7491237" + "WESTCENTRALUS:20210217T023526Z:c015fbe2-6b45-42d6-85e7-39bf910f57ae" ], "Date": [ - "Tue, 01 Sep 2020 19:31:50 GMT" + "Wed, 17 Feb 2021 02:35:26 GMT" ], "Content-Length": [ "282" @@ -2532,20 +2648,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2555,29 +2674,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11864" ], "x-ms-request-id": [ - "07738929-4065-456a-8f21-d3ab7834f6f1" + "6d397116-6dc1-44c1-a814-9a8aa0a3b489" ], "x-ms-correlation-request-id": [ - "07738929-4065-456a-8f21-d3ab7834f6f1" + "6d397116-6dc1-44c1-a814-9a8aa0a3b489" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193211Z:07738929-4065-456a-8f21-d3ab7834f6f1" + "WESTCENTRALUS:20210217T023546Z:6d397116-6dc1-44c1-a814-9a8aa0a3b489" ], "Date": [ - "Tue, 01 Sep 2020 19:32:10 GMT" + "Wed, 17 Feb 2021 02:35:46 GMT" ], "Content-Length": [ "282" @@ -2589,20 +2709,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2612,29 +2735,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11861" ], "x-ms-request-id": [ - "2017ce01-a78c-48c1-90fc-b8db4d394f59" + "2d6cdb0d-85bc-4908-acf1-3bc5a50c1344" ], "x-ms-correlation-request-id": [ - "2017ce01-a78c-48c1-90fc-b8db4d394f59" + "2d6cdb0d-85bc-4908-acf1-3bc5a50c1344" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193231Z:2017ce01-a78c-48c1-90fc-b8db4d394f59" + "WESTCENTRALUS:20210217T023606Z:2d6cdb0d-85bc-4908-acf1-3bc5a50c1344" ], "Date": [ - "Tue, 01 Sep 2020 19:32:30 GMT" + "Wed, 17 Feb 2021 02:36:06 GMT" ], "Content-Length": [ "282" @@ -2646,20 +2770,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2669,29 +2796,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11858" ], "x-ms-request-id": [ - "8392efca-6e03-45ff-a80e-c4b8c3d3a1cf" + "7a15d597-7c4f-4a72-a9ff-423c86fa8c2c" ], "x-ms-correlation-request-id": [ - "8392efca-6e03-45ff-a80e-c4b8c3d3a1cf" + "7a15d597-7c4f-4a72-a9ff-423c86fa8c2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193251Z:8392efca-6e03-45ff-a80e-c4b8c3d3a1cf" + "WESTCENTRALUS:20210217T023627Z:7a15d597-7c4f-4a72-a9ff-423c86fa8c2c" ], "Date": [ - "Tue, 01 Sep 2020 19:32:51 GMT" + "Wed, 17 Feb 2021 02:36:26 GMT" ], "Content-Length": [ "282" @@ -2703,20 +2831,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2726,29 +2857,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11857" ], "x-ms-request-id": [ - "ff7869db-12bb-4059-b1b2-89535396b409" + "6c27383a-a4be-4fb6-bb84-14d0a4c6bf50" ], "x-ms-correlation-request-id": [ - "ff7869db-12bb-4059-b1b2-89535396b409" + "6c27383a-a4be-4fb6-bb84-14d0a4c6bf50" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193311Z:ff7869db-12bb-4059-b1b2-89535396b409" + "WESTCENTRALUS:20210217T023647Z:6c27383a-a4be-4fb6-bb84-14d0a4c6bf50" ], "Date": [ - "Tue, 01 Sep 2020 19:33:11 GMT" + "Wed, 17 Feb 2021 02:36:46 GMT" ], "Content-Length": [ "282" @@ -2760,20 +2892,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2783,29 +2918,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11855" ], "x-ms-request-id": [ - "e29e59a9-945b-49dc-b87b-91760531f327" + "0b7ddf46-8e0e-45ce-b835-642f277e6631" ], "x-ms-correlation-request-id": [ - "e29e59a9-945b-49dc-b87b-91760531f327" + "0b7ddf46-8e0e-45ce-b835-642f277e6631" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193331Z:e29e59a9-945b-49dc-b87b-91760531f327" + "WESTCENTRALUS:20210217T023707Z:0b7ddf46-8e0e-45ce-b835-642f277e6631" ], "Date": [ - "Tue, 01 Sep 2020 19:33:31 GMT" + "Wed, 17 Feb 2021 02:37:07 GMT" ], "Content-Length": [ "282" @@ -2817,20 +2953,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2840,29 +2979,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11853" ], "x-ms-request-id": [ - "e7d5bfce-13a1-4f5c-b33c-37fddfd4d3e3" + "519bca09-edc6-4128-b350-d1bae4586c8f" ], "x-ms-correlation-request-id": [ - "e7d5bfce-13a1-4f5c-b33c-37fddfd4d3e3" + "519bca09-edc6-4128-b350-d1bae4586c8f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193351Z:e7d5bfce-13a1-4f5c-b33c-37fddfd4d3e3" + "WESTCENTRALUS:20210217T023727Z:519bca09-edc6-4128-b350-d1bae4586c8f" ], "Date": [ - "Tue, 01 Sep 2020 19:33:51 GMT" + "Wed, 17 Feb 2021 02:37:27 GMT" ], "Content-Length": [ "282" @@ -2874,20 +3014,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2897,29 +3040,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11851" ], "x-ms-request-id": [ - "52173cfd-aef5-4563-bd44-55038c4a9e1d" + "0eb0bb2d-cc0e-461a-804f-eaa13d8acc64" ], "x-ms-correlation-request-id": [ - "52173cfd-aef5-4563-bd44-55038c4a9e1d" + "0eb0bb2d-cc0e-461a-804f-eaa13d8acc64" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193411Z:52173cfd-aef5-4563-bd44-55038c4a9e1d" + "WESTCENTRALUS:20210217T023747Z:0eb0bb2d-cc0e-461a-804f-eaa13d8acc64" ], "Date": [ - "Tue, 01 Sep 2020 19:34:11 GMT" + "Wed, 17 Feb 2021 02:37:47 GMT" ], "Content-Length": [ "282" @@ -2931,20 +3075,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2954,29 +3101,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11850" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "eab7bd8e-0546-497e-918c-15aa23e1ebf9" + "a4b5649d-f9e4-4fac-aef2-1b61396f52a3" ], "x-ms-correlation-request-id": [ - "eab7bd8e-0546-497e-918c-15aa23e1ebf9" + "a4b5649d-f9e4-4fac-aef2-1b61396f52a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193431Z:eab7bd8e-0546-497e-918c-15aa23e1ebf9" + "WESTCENTRALUS:20210217T023807Z:a4b5649d-f9e4-4fac-aef2-1b61396f52a3" ], "Date": [ - "Tue, 01 Sep 2020 19:34:30 GMT" + "Wed, 17 Feb 2021 02:38:07 GMT" ], "Content-Length": [ "282" @@ -2988,20 +3136,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/35de0003-2d13-484e-8d2c-70803f41d62c?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM1ZGUwMDAzLTJkMTMtNDg0ZS04ZDJjLTcwODAzZjQxZDYyYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd871814-cec2-4419-98c7-350d6dc45999" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3011,32 +3162,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11849" ], "x-ms-request-id": [ - "d1c3209b-2e54-4175-bd6c-daa641bda790" + "b97b577b-4e41-48d4-ba08-5dbb41da21f0" ], "x-ms-correlation-request-id": [ - "d1c3209b-2e54-4175-bd6c-daa641bda790" + "b97b577b-4e41-48d4-ba08-5dbb41da21f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193451Z:d1c3209b-2e54-4175-bd6c-daa641bda790" + "WESTCENTRALUS:20210217T023828Z:b97b577b-4e41-48d4-ba08-5dbb41da21f0" ], "Date": [ - "Tue, 01 Sep 2020 19:34:50 GMT" + "Wed, 17 Feb 2021 02:38:27 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3045,20 +3197,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"35de0003-2d13-484e-8d2c-70803f41d62c\",\r\n \"startTime\": \"2021-02-17T02:31:23.7871386Z\",\r\n \"endTime\": \"2021-02-17T02:38:25.5744036Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/11240000-03b2-411c-b19c-3ddb45d1f8eb?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzExMjQwMDAwLTAzYjItNDExYy1iMTljLTNkZGI0NWQxZjhlYj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3068,32 +3223,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11845" ], "x-ms-request-id": [ - "82950e86-2efd-43c3-87c6-3bb958d670b1" + "ce332a22-1bb4-4c45-9313-185003f15fdb" ], "x-ms-correlation-request-id": [ - "82950e86-2efd-43c3-87c6-3bb958d670b1" + "ce332a22-1bb4-4c45-9313-185003f15fdb" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193511Z:82950e86-2efd-43c3-87c6-3bb958d670b1" + "WESTCENTRALUS:20210217T023849Z:ce332a22-1bb4-4c45-9313-185003f15fdb" ], "Date": [ - "Tue, 01 Sep 2020 19:35:11 GMT" + "Wed, 17 Feb 2021 02:38:49 GMT" ], "Content-Length": [ - "294" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3102,20 +3258,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"11240000-03b2-411c-b19c-3ddb45d1f8eb\",\r\n \"startTime\": \"2020-09-01T19:27:49.7402208Z\",\r\n \"endTime\": \"2020-09-01T19:34:52.2002761Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3125,29 +3284,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11843" ], "x-ms-request-id": [ - "fdeb8d3e-eafe-41a1-b4e7-b081a6dd870c" + "b244a640-752b-46db-9117-5f314f5f3792" ], "x-ms-correlation-request-id": [ - "fdeb8d3e-eafe-41a1-b4e7-b081a6dd870c" + "b244a640-752b-46db-9117-5f314f5f3792" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193532Z:fdeb8d3e-eafe-41a1-b4e7-b081a6dd870c" + "WESTCENTRALUS:20210217T023910Z:b244a640-752b-46db-9117-5f314f5f3792" ], "Date": [ - "Tue, 01 Sep 2020 19:35:32 GMT" + "Wed, 17 Feb 2021 02:39:09 GMT" ], "Content-Length": [ "282" @@ -3159,20 +3319,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3182,29 +3345,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11841" ], "x-ms-request-id": [ - "9a5cd8b1-02b0-444e-84e6-c47d5bc602a8" + "53ef89f1-55b8-413d-abbd-60ec845d0014" ], "x-ms-correlation-request-id": [ - "9a5cd8b1-02b0-444e-84e6-c47d5bc602a8" + "53ef89f1-55b8-413d-abbd-60ec845d0014" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193552Z:9a5cd8b1-02b0-444e-84e6-c47d5bc602a8" + "WESTCENTRALUS:20210217T023930Z:53ef89f1-55b8-413d-abbd-60ec845d0014" ], "Date": [ - "Tue, 01 Sep 2020 19:35:52 GMT" + "Wed, 17 Feb 2021 02:39:30 GMT" ], "Content-Length": [ "282" @@ -3216,20 +3380,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3239,29 +3406,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11837" ], "x-ms-request-id": [ - "c7ad3448-715e-4162-9f15-a2c359ca0ff3" + "403f756f-91b7-4001-aae9-665a15bd70cb" ], "x-ms-correlation-request-id": [ - "c7ad3448-715e-4162-9f15-a2c359ca0ff3" + "403f756f-91b7-4001-aae9-665a15bd70cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193612Z:c7ad3448-715e-4162-9f15-a2c359ca0ff3" + "WESTCENTRALUS:20210217T023950Z:403f756f-91b7-4001-aae9-665a15bd70cb" ], "Date": [ - "Tue, 01 Sep 2020 19:36:12 GMT" + "Wed, 17 Feb 2021 02:39:50 GMT" ], "Content-Length": [ "282" @@ -3273,20 +3441,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3296,29 +3467,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11836" ], "x-ms-request-id": [ - "814d43f2-b099-4e4b-9c53-84f00b610ba6" + "8968abcb-c1e8-4436-8dd5-411cdcc9f96e" ], "x-ms-correlation-request-id": [ - "814d43f2-b099-4e4b-9c53-84f00b610ba6" + "8968abcb-c1e8-4436-8dd5-411cdcc9f96e" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193632Z:814d43f2-b099-4e4b-9c53-84f00b610ba6" + "WESTCENTRALUS:20210217T024010Z:8968abcb-c1e8-4436-8dd5-411cdcc9f96e" ], "Date": [ - "Tue, 01 Sep 2020 19:36:32 GMT" + "Wed, 17 Feb 2021 02:40:10 GMT" ], "Content-Length": [ "282" @@ -3330,20 +3502,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3353,29 +3528,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11833" ], "x-ms-request-id": [ - "9fe9a003-e6d5-4067-a971-eb869c61c98d" + "9e29fcdb-ce2d-4772-aa1c-e574956c4b6c" ], "x-ms-correlation-request-id": [ - "9fe9a003-e6d5-4067-a971-eb869c61c98d" + "9e29fcdb-ce2d-4772-aa1c-e574956c4b6c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193652Z:9fe9a003-e6d5-4067-a971-eb869c61c98d" + "WESTCENTRALUS:20210217T024030Z:9e29fcdb-ce2d-4772-aa1c-e574956c4b6c" ], "Date": [ - "Tue, 01 Sep 2020 19:36:52 GMT" + "Wed, 17 Feb 2021 02:40:30 GMT" ], "Content-Length": [ "282" @@ -3387,20 +3563,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3410,29 +3589,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11832" ], "x-ms-request-id": [ - "bb733d78-dce4-44af-8449-7058e137ed04" + "5f7819b1-8c82-40fe-a1e1-a5add3292e2f" ], "x-ms-correlation-request-id": [ - "bb733d78-dce4-44af-8449-7058e137ed04" + "5f7819b1-8c82-40fe-a1e1-a5add3292e2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193713Z:bb733d78-dce4-44af-8449-7058e137ed04" + "WESTCENTRALUS:20210217T024050Z:5f7819b1-8c82-40fe-a1e1-a5add3292e2f" ], "Date": [ - "Tue, 01 Sep 2020 19:37:12 GMT" + "Wed, 17 Feb 2021 02:40:50 GMT" ], "Content-Length": [ "282" @@ -3444,20 +3624,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3467,29 +3650,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" ], "x-ms-request-id": [ - "14ee5e69-c055-4723-b126-a717a713cf2b" + "78ac1ffd-3ffc-4418-b7bf-3fce560db100" ], "x-ms-correlation-request-id": [ - "14ee5e69-c055-4723-b126-a717a713cf2b" + "78ac1ffd-3ffc-4418-b7bf-3fce560db100" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193733Z:14ee5e69-c055-4723-b126-a717a713cf2b" + "WESTCENTRALUS:20210217T024111Z:78ac1ffd-3ffc-4418-b7bf-3fce560db100" ], "Date": [ - "Tue, 01 Sep 2020 19:37:32 GMT" + "Wed, 17 Feb 2021 02:41:10 GMT" ], "Content-Length": [ "282" @@ -3501,20 +3685,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3524,29 +3711,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11830" ], "x-ms-request-id": [ - "0574dbb7-93e0-4fe6-b5af-323f5fed4f9c" + "a9a7657c-3354-4aa7-85c0-87231ef36499" ], "x-ms-correlation-request-id": [ - "0574dbb7-93e0-4fe6-b5af-323f5fed4f9c" + "a9a7657c-3354-4aa7-85c0-87231ef36499" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193753Z:0574dbb7-93e0-4fe6-b5af-323f5fed4f9c" + "WESTCENTRALUS:20210217T024131Z:a9a7657c-3354-4aa7-85c0-87231ef36499" ], "Date": [ - "Tue, 01 Sep 2020 19:37:52 GMT" + "Wed, 17 Feb 2021 02:41:30 GMT" ], "Content-Length": [ "282" @@ -3558,20 +3746,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3581,29 +3772,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11829" ], "x-ms-request-id": [ - "5f5a7524-730e-46e6-a702-b7a1be5c4b84" + "c6bd00f4-727e-4589-9cdf-0fad38769673" ], "x-ms-correlation-request-id": [ - "5f5a7524-730e-46e6-a702-b7a1be5c4b84" + "c6bd00f4-727e-4589-9cdf-0fad38769673" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193813Z:5f5a7524-730e-46e6-a702-b7a1be5c4b84" + "WESTCENTRALUS:20210217T024151Z:c6bd00f4-727e-4589-9cdf-0fad38769673" ], "Date": [ - "Tue, 01 Sep 2020 19:38:13 GMT" + "Wed, 17 Feb 2021 02:41:51 GMT" ], "Content-Length": [ "282" @@ -3615,20 +3807,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3638,29 +3833,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11827" ], "x-ms-request-id": [ - "618c64cf-fc8e-402d-bed4-97c4b10281fe" + "fbfef10d-4b3f-49ee-bbd2-287c68e43909" ], "x-ms-correlation-request-id": [ - "618c64cf-fc8e-402d-bed4-97c4b10281fe" + "fbfef10d-4b3f-49ee-bbd2-287c68e43909" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193833Z:618c64cf-fc8e-402d-bed4-97c4b10281fe" + "WESTCENTRALUS:20210217T024211Z:fbfef10d-4b3f-49ee-bbd2-287c68e43909" ], "Date": [ - "Tue, 01 Sep 2020 19:38:33 GMT" + "Wed, 17 Feb 2021 02:42:11 GMT" ], "Content-Length": [ "282" @@ -3672,20 +3868,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3695,29 +3894,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11824" ], "x-ms-request-id": [ - "b0ec64b0-7abd-4862-8574-8401f5af862d" + "9fe6f755-ae67-4c50-bc21-3fd68a1feb30" ], "x-ms-correlation-request-id": [ - "b0ec64b0-7abd-4862-8574-8401f5af862d" + "9fe6f755-ae67-4c50-bc21-3fd68a1feb30" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193853Z:b0ec64b0-7abd-4862-8574-8401f5af862d" + "WESTCENTRALUS:20210217T024231Z:9fe6f755-ae67-4c50-bc21-3fd68a1feb30" ], "Date": [ - "Tue, 01 Sep 2020 19:38:53 GMT" + "Wed, 17 Feb 2021 02:42:31 GMT" ], "Content-Length": [ "282" @@ -3729,20 +3929,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3752,29 +3955,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11823" ], "x-ms-request-id": [ - "9a6ba38e-7fb5-4c8d-8996-590fb3f87068" + "479c4d05-6779-4de7-9b0c-5982ca44cfef" ], "x-ms-correlation-request-id": [ - "9a6ba38e-7fb5-4c8d-8996-590fb3f87068" + "479c4d05-6779-4de7-9b0c-5982ca44cfef" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193913Z:9a6ba38e-7fb5-4c8d-8996-590fb3f87068" + "WESTCENTRALUS:20210217T024251Z:479c4d05-6779-4de7-9b0c-5982ca44cfef" ], "Date": [ - "Tue, 01 Sep 2020 19:39:13 GMT" + "Wed, 17 Feb 2021 02:42:51 GMT" ], "Content-Length": [ "282" @@ -3786,20 +3990,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3809,29 +4016,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11822" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fd32b833-9446-4f2a-93bd-fe8fc8864b23" + "d50a39a6-8051-4458-b666-7250fc3ce1ea" ], "x-ms-correlation-request-id": [ - "fd32b833-9446-4f2a-93bd-fe8fc8864b23" + "d50a39a6-8051-4458-b666-7250fc3ce1ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193933Z:fd32b833-9446-4f2a-93bd-fe8fc8864b23" + "WESTCENTRALUS:20210217T024312Z:d50a39a6-8051-4458-b666-7250fc3ce1ea" ], "Date": [ - "Tue, 01 Sep 2020 19:39:32 GMT" + "Wed, 17 Feb 2021 02:43:11 GMT" ], "Content-Length": [ "282" @@ -3843,20 +4051,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3866,29 +4077,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11821" ], "x-ms-request-id": [ - "2d744c21-d478-4c91-a135-5e5d54c55c02" + "c0070a8e-3f11-408f-a75c-82d0aa270ca7" ], "x-ms-correlation-request-id": [ - "2d744c21-d478-4c91-a135-5e5d54c55c02" + "c0070a8e-3f11-408f-a75c-82d0aa270ca7" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T193953Z:2d744c21-d478-4c91-a135-5e5d54c55c02" + "WESTCENTRALUS:20210217T024332Z:c0070a8e-3f11-408f-a75c-82d0aa270ca7" ], "Date": [ - "Tue, 01 Sep 2020 19:39:52 GMT" + "Wed, 17 Feb 2021 02:43:31 GMT" ], "Content-Length": [ "282" @@ -3900,20 +4112,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3923,29 +4138,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11820" ], "x-ms-request-id": [ - "fb0d8073-fb12-4d69-80d1-34b6beef005a" + "f33f2960-a961-4c23-8aff-d6f42ed36bc4" ], "x-ms-correlation-request-id": [ - "fb0d8073-fb12-4d69-80d1-34b6beef005a" + "f33f2960-a961-4c23-8aff-d6f42ed36bc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194013Z:fb0d8073-fb12-4d69-80d1-34b6beef005a" + "WESTCENTRALUS:20210217T024352Z:f33f2960-a961-4c23-8aff-d6f42ed36bc4" ], "Date": [ - "Tue, 01 Sep 2020 19:40:13 GMT" + "Wed, 17 Feb 2021 02:43:51 GMT" ], "Content-Length": [ "282" @@ -3957,20 +4173,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3980,29 +4199,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11818" ], "x-ms-request-id": [ - "3c25b6a8-42ee-4d8a-ae53-a13fa51283ed" + "f4eba81b-1118-44e6-89dc-cebd88ed77d9" ], "x-ms-correlation-request-id": [ - "3c25b6a8-42ee-4d8a-ae53-a13fa51283ed" + "f4eba81b-1118-44e6-89dc-cebd88ed77d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194033Z:3c25b6a8-42ee-4d8a-ae53-a13fa51283ed" + "WESTCENTRALUS:20210217T024413Z:f4eba81b-1118-44e6-89dc-cebd88ed77d9" ], "Date": [ - "Tue, 01 Sep 2020 19:40:33 GMT" + "Wed, 17 Feb 2021 02:44:13 GMT" ], "Content-Length": [ "282" @@ -4014,20 +4234,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4037,29 +4260,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11817" ], "x-ms-request-id": [ - "0301f529-4a1f-489f-8f8c-362d6adf464f" + "6cd160ed-c9c5-43ef-887c-a9a3acc3b10a" ], "x-ms-correlation-request-id": [ - "0301f529-4a1f-489f-8f8c-362d6adf464f" + "6cd160ed-c9c5-43ef-887c-a9a3acc3b10a" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194054Z:0301f529-4a1f-489f-8f8c-362d6adf464f" + "WESTCENTRALUS:20210217T024433Z:6cd160ed-c9c5-43ef-887c-a9a3acc3b10a" ], "Date": [ - "Tue, 01 Sep 2020 19:40:53 GMT" + "Wed, 17 Feb 2021 02:44:33 GMT" ], "Content-Length": [ "282" @@ -4071,20 +4295,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4094,29 +4321,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11816" ], "x-ms-request-id": [ - "a051584b-826c-46f9-9a37-8880c03aef1e" + "65d3c962-75eb-48d1-b7d7-d8e21be65f8d" ], "x-ms-correlation-request-id": [ - "a051584b-826c-46f9-9a37-8880c03aef1e" + "65d3c962-75eb-48d1-b7d7-d8e21be65f8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194114Z:a051584b-826c-46f9-9a37-8880c03aef1e" + "WESTCENTRALUS:20210217T024453Z:65d3c962-75eb-48d1-b7d7-d8e21be65f8d" ], "Date": [ - "Tue, 01 Sep 2020 19:41:13 GMT" + "Wed, 17 Feb 2021 02:44:53 GMT" ], "Content-Length": [ "282" @@ -4128,20 +4356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4151,29 +4382,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11815" ], "x-ms-request-id": [ - "1af13719-6c44-404c-9a81-a2b780164a8e" + "dead46d6-bfce-434e-84fa-5f5d45264124" ], "x-ms-correlation-request-id": [ - "1af13719-6c44-404c-9a81-a2b780164a8e" + "dead46d6-bfce-434e-84fa-5f5d45264124" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194134Z:1af13719-6c44-404c-9a81-a2b780164a8e" + "WESTCENTRALUS:20210217T024513Z:dead46d6-bfce-434e-84fa-5f5d45264124" ], "Date": [ - "Tue, 01 Sep 2020 19:41:33 GMT" + "Wed, 17 Feb 2021 02:45:13 GMT" ], "Content-Length": [ "282" @@ -4185,20 +4417,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4208,29 +4443,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11814" ], "x-ms-request-id": [ - "7cca2a09-66e0-43d0-9092-00347d1b1db2" + "ee390e57-ad3a-4226-b273-b81ed1cca029" ], "x-ms-correlation-request-id": [ - "7cca2a09-66e0-43d0-9092-00347d1b1db2" + "ee390e57-ad3a-4226-b273-b81ed1cca029" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194154Z:7cca2a09-66e0-43d0-9092-00347d1b1db2" + "WESTCENTRALUS:20210217T024533Z:ee390e57-ad3a-4226-b273-b81ed1cca029" ], "Date": [ - "Tue, 01 Sep 2020 19:41:53 GMT" + "Wed, 17 Feb 2021 02:45:33 GMT" ], "Content-Length": [ "282" @@ -4242,20 +4478,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4265,29 +4504,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11813" ], "x-ms-request-id": [ - "74bf76a3-18fc-4282-99ed-0268a1fad57d" + "60331d94-ae0a-4b43-83c9-0b22210d63b5" ], "x-ms-correlation-request-id": [ - "74bf76a3-18fc-4282-99ed-0268a1fad57d" + "60331d94-ae0a-4b43-83c9-0b22210d63b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194214Z:74bf76a3-18fc-4282-99ed-0268a1fad57d" + "WESTCENTRALUS:20210217T024553Z:60331d94-ae0a-4b43-83c9-0b22210d63b5" ], "Date": [ - "Tue, 01 Sep 2020 19:42:13 GMT" + "Wed, 17 Feb 2021 02:45:53 GMT" ], "Content-Length": [ "282" @@ -4299,20 +4539,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4322,29 +4565,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11812" ], "x-ms-request-id": [ - "f9194f76-ace4-4006-882d-8bf01e91563d" + "c9ed502e-2f06-47eb-b19a-06864aa56b60" ], "x-ms-correlation-request-id": [ - "f9194f76-ace4-4006-882d-8bf01e91563d" + "c9ed502e-2f06-47eb-b19a-06864aa56b60" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194234Z:f9194f76-ace4-4006-882d-8bf01e91563d" + "WESTCENTRALUS:20210217T024614Z:c9ed502e-2f06-47eb-b19a-06864aa56b60" ], "Date": [ - "Tue, 01 Sep 2020 19:42:33 GMT" + "Wed, 17 Feb 2021 02:46:13 GMT" ], "Content-Length": [ "282" @@ -4356,20 +4600,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4379,29 +4626,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11810" ], "x-ms-request-id": [ - "a4a2300a-9ac4-4b77-a2fe-3b7469d3ab10" + "4ed09341-4878-4c2c-b312-dfa571eb8b83" ], "x-ms-correlation-request-id": [ - "a4a2300a-9ac4-4b77-a2fe-3b7469d3ab10" + "4ed09341-4878-4c2c-b312-dfa571eb8b83" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194254Z:a4a2300a-9ac4-4b77-a2fe-3b7469d3ab10" + "WESTCENTRALUS:20210217T024634Z:4ed09341-4878-4c2c-b312-dfa571eb8b83" ], "Date": [ - "Tue, 01 Sep 2020 19:42:53 GMT" + "Wed, 17 Feb 2021 02:46:33 GMT" ], "Content-Length": [ "282" @@ -4413,20 +4661,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4436,29 +4687,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11809" ], "x-ms-request-id": [ - "76fe8974-d469-44d7-9b97-276bef6ff8bc" + "173a0642-4d8c-41a9-899a-fca1298f998d" ], "x-ms-correlation-request-id": [ - "76fe8974-d469-44d7-9b97-276bef6ff8bc" + "173a0642-4d8c-41a9-899a-fca1298f998d" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194314Z:76fe8974-d469-44d7-9b97-276bef6ff8bc" + "WESTCENTRALUS:20210217T024654Z:173a0642-4d8c-41a9-899a-fca1298f998d" ], "Date": [ - "Tue, 01 Sep 2020 19:43:13 GMT" + "Wed, 17 Feb 2021 02:46:54 GMT" ], "Content-Length": [ "282" @@ -4470,20 +4722,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4493,29 +4748,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11805" ], "x-ms-request-id": [ - "8efddd80-7b6d-475d-a832-15a507c3ed13" + "f492f728-e03e-4f1a-a506-11f79a60dfb3" ], "x-ms-correlation-request-id": [ - "8efddd80-7b6d-475d-a832-15a507c3ed13" + "f492f728-e03e-4f1a-a506-11f79a60dfb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194334Z:8efddd80-7b6d-475d-a832-15a507c3ed13" + "WESTCENTRALUS:20210217T024714Z:f492f728-e03e-4f1a-a506-11f79a60dfb3" ], "Date": [ - "Tue, 01 Sep 2020 19:43:34 GMT" + "Wed, 17 Feb 2021 02:47:14 GMT" ], "Content-Length": [ "282" @@ -4527,20 +4783,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/8e9a0003-8e5f-490e-8491-898aa1b1698d?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhlOWEwMDAzLThlNWYtNDkwZS04NDkxLTg5OGFhMWIxNjk4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7d53b-5a4b-4b6e-bd89-e70ae47a439d" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4550,32 +4809,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11804" ], "x-ms-request-id": [ - "6ced9995-e259-4eca-a587-23dc01228a18" + "3e762c30-73fd-46ac-890d-d0fa59375127" ], "x-ms-correlation-request-id": [ - "6ced9995-e259-4eca-a587-23dc01228a18" + "3e762c30-73fd-46ac-890d-d0fa59375127" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194354Z:6ced9995-e259-4eca-a587-23dc01228a18" + "WESTCENTRALUS:20210217T024734Z:3e762c30-73fd-46ac-890d-d0fa59375127" ], "Date": [ - "Tue, 01 Sep 2020 19:43:54 GMT" + "Wed, 17 Feb 2021 02:47:34 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4584,20 +4844,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8e9a0003-8e5f-490e-8491-898aa1b1698d\",\r\n \"startTime\": \"2021-02-17T02:38:29.4821054Z\",\r\n \"endTime\": \"2021-02-17T02:47:30.7761515Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4607,29 +4870,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11798" ], "x-ms-request-id": [ - "477ef312-3c46-4631-84e9-1b741f6efa20" + "444135d1-dab1-45d4-ad23-b62624299e62" ], "x-ms-correlation-request-id": [ - "477ef312-3c46-4631-84e9-1b741f6efa20" + "444135d1-dab1-45d4-ad23-b62624299e62" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194414Z:477ef312-3c46-4631-84e9-1b741f6efa20" + "WESTCENTRALUS:20210217T024756Z:444135d1-dab1-45d4-ad23-b62624299e62" ], "Date": [ - "Tue, 01 Sep 2020 19:44:14 GMT" + "Wed, 17 Feb 2021 02:47:55 GMT" ], "Content-Length": [ "282" @@ -4641,20 +4905,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4664,29 +4931,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11794" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4c2ddbc6-e952-4faf-9613-7dff9429b521" + "aa636784-c88e-4145-a4f3-35ecfbcd0265" ], "x-ms-correlation-request-id": [ - "4c2ddbc6-e952-4faf-9613-7dff9429b521" + "aa636784-c88e-4145-a4f3-35ecfbcd0265" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194434Z:4c2ddbc6-e952-4faf-9613-7dff9429b521" + "WESTCENTRALUS:20210217T024816Z:aa636784-c88e-4145-a4f3-35ecfbcd0265" ], "Date": [ - "Tue, 01 Sep 2020 19:44:34 GMT" + "Wed, 17 Feb 2021 02:48:15 GMT" ], "Content-Length": [ "282" @@ -4698,20 +4966,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4721,29 +4992,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11792" ], "x-ms-request-id": [ - "10af7daf-3213-473c-ba83-76f3bef204a4" + "4fb5177c-546d-4845-bf8d-92f1b1ff47de" ], "x-ms-correlation-request-id": [ - "10af7daf-3213-473c-ba83-76f3bef204a4" + "4fb5177c-546d-4845-bf8d-92f1b1ff47de" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194455Z:10af7daf-3213-473c-ba83-76f3bef204a4" + "WESTCENTRALUS:20210217T024836Z:4fb5177c-546d-4845-bf8d-92f1b1ff47de" ], "Date": [ - "Tue, 01 Sep 2020 19:44:54 GMT" + "Wed, 17 Feb 2021 02:48:35 GMT" ], "Content-Length": [ "282" @@ -4755,20 +5027,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4778,29 +5053,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11790" ], "x-ms-request-id": [ - "7a8df118-6197-4c05-a723-ce814f8ab6be" + "b22d6854-3a9a-4f6e-bed2-4f3e96e18164" ], "x-ms-correlation-request-id": [ - "7a8df118-6197-4c05-a723-ce814f8ab6be" + "b22d6854-3a9a-4f6e-bed2-4f3e96e18164" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194515Z:7a8df118-6197-4c05-a723-ce814f8ab6be" + "WESTCENTRALUS:20210217T024856Z:b22d6854-3a9a-4f6e-bed2-4f3e96e18164" ], "Date": [ - "Tue, 01 Sep 2020 19:45:14 GMT" + "Wed, 17 Feb 2021 02:48:55 GMT" ], "Content-Length": [ "282" @@ -4812,20 +5088,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4835,29 +5114,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11785" ], "x-ms-request-id": [ - "7c14a517-5949-4ee9-8d15-3b92de70b6e5" + "7edc8510-98cc-4431-8376-95b55a75282c" ], "x-ms-correlation-request-id": [ - "7c14a517-5949-4ee9-8d15-3b92de70b6e5" + "7edc8510-98cc-4431-8376-95b55a75282c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194535Z:7c14a517-5949-4ee9-8d15-3b92de70b6e5" + "WESTCENTRALUS:20210217T024916Z:7edc8510-98cc-4431-8376-95b55a75282c" ], "Date": [ - "Tue, 01 Sep 2020 19:45:34 GMT" + "Wed, 17 Feb 2021 02:49:16 GMT" ], "Content-Length": [ "282" @@ -4869,20 +5149,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d6df0000-ae8e-4095-9573-1f3e9f45a124?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q2ZGYwMDAwLWFlOGUtNDA5NS05NTczLTFmM2U5ZjQ1YTEyND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4892,32 +5175,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11783" ], "x-ms-request-id": [ - "1153640e-5f32-470f-b662-7ca00fe67315" + "ea121a2c-f004-4f75-af6f-19561f2a899e" ], "x-ms-correlation-request-id": [ - "1153640e-5f32-470f-b662-7ca00fe67315" + "ea121a2c-f004-4f75-af6f-19561f2a899e" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194555Z:1153640e-5f32-470f-b662-7ca00fe67315" + "WESTCENTRALUS:20210217T024936Z:ea121a2c-f004-4f75-af6f-19561f2a899e" ], "Date": [ - "Tue, 01 Sep 2020 19:45:55 GMT" + "Wed, 17 Feb 2021 02:49:36 GMT" ], "Content-Length": [ - "294" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4926,20 +5210,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d6df0000-ae8e-4095-9573-1f3e9f45a124\",\r\n \"startTime\": \"2020-09-01T19:35:12.3539807Z\",\r\n \"endTime\": \"2020-09-01T19:45:53.9389523Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4949,29 +5236,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11782" ], "x-ms-request-id": [ - "a8c1b30b-d0fc-494e-a3f6-902b4c68ade3" + "154da5b0-a334-41a8-a9a9-e0fde3a8f5c9" ], "x-ms-correlation-request-id": [ - "a8c1b30b-d0fc-494e-a3f6-902b4c68ade3" + "154da5b0-a334-41a8-a9a9-e0fde3a8f5c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194619Z:a8c1b30b-d0fc-494e-a3f6-902b4c68ade3" + "WESTCENTRALUS:20210217T024957Z:154da5b0-a334-41a8-a9a9-e0fde3a8f5c9" ], "Date": [ - "Tue, 01 Sep 2020 19:46:19 GMT" + "Wed, 17 Feb 2021 02:49:56 GMT" ], "Content-Length": [ "282" @@ -4983,20 +5271,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5006,29 +5297,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11795" ], "x-ms-request-id": [ - "a6dbff4c-258d-4a4b-a9e9-7e9d8ad9be45" + "0a55c230-45e9-4508-85bd-4eb531185638" ], "x-ms-correlation-request-id": [ - "a6dbff4c-258d-4a4b-a9e9-7e9d8ad9be45" + "0a55c230-45e9-4508-85bd-4eb531185638" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194639Z:a6dbff4c-258d-4a4b-a9e9-7e9d8ad9be45" + "WESTCENTRALUS:20210217T025017Z:0a55c230-45e9-4508-85bd-4eb531185638" ], "Date": [ - "Tue, 01 Sep 2020 19:46:39 GMT" + "Wed, 17 Feb 2021 02:50:16 GMT" ], "Content-Length": [ "282" @@ -5040,20 +5332,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5063,29 +5358,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11792" ], "x-ms-request-id": [ - "63f4a89b-72ba-40d0-888f-fac5e33f118d" + "70071982-0c5b-4c1a-b5cc-2275c4470854" ], "x-ms-correlation-request-id": [ - "63f4a89b-72ba-40d0-888f-fac5e33f118d" + "70071982-0c5b-4c1a-b5cc-2275c4470854" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194659Z:63f4a89b-72ba-40d0-888f-fac5e33f118d" + "WESTCENTRALUS:20210217T025037Z:70071982-0c5b-4c1a-b5cc-2275c4470854" ], "Date": [ - "Tue, 01 Sep 2020 19:46:59 GMT" + "Wed, 17 Feb 2021 02:50:36 GMT" ], "Content-Length": [ "282" @@ -5097,20 +5393,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5120,29 +5419,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11791" ], "x-ms-request-id": [ - "36b7e650-d187-4a25-9ea9-486f0ccf5925" + "304b04c8-8584-48e6-a7cb-864602f73f12" ], "x-ms-correlation-request-id": [ - "36b7e650-d187-4a25-9ea9-486f0ccf5925" + "304b04c8-8584-48e6-a7cb-864602f73f12" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194719Z:36b7e650-d187-4a25-9ea9-486f0ccf5925" + "WESTCENTRALUS:20210217T025057Z:304b04c8-8584-48e6-a7cb-864602f73f12" ], "Date": [ - "Tue, 01 Sep 2020 19:47:19 GMT" + "Wed, 17 Feb 2021 02:50:57 GMT" ], "Content-Length": [ "282" @@ -5154,20 +5454,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5177,29 +5480,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11786" ], "x-ms-request-id": [ - "bece24a0-5c8d-4e8f-9ad8-fef523689546" + "f8066dfd-0d6e-471c-ab37-19f895f87010" ], "x-ms-correlation-request-id": [ - "bece24a0-5c8d-4e8f-9ad8-fef523689546" + "f8066dfd-0d6e-471c-ab37-19f895f87010" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194739Z:bece24a0-5c8d-4e8f-9ad8-fef523689546" + "WESTCENTRALUS:20210217T025117Z:f8066dfd-0d6e-471c-ab37-19f895f87010" ], "Date": [ - "Tue, 01 Sep 2020 19:47:38 GMT" + "Wed, 17 Feb 2021 02:51:17 GMT" ], "Content-Length": [ "282" @@ -5211,20 +5515,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5234,29 +5541,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11785" ], "x-ms-request-id": [ - "c2ccc137-b6b4-467b-8cc0-4b9bbdc0a2be" + "f4b62be6-dcc4-4425-8c45-6f75ec6de674" ], "x-ms-correlation-request-id": [ - "c2ccc137-b6b4-467b-8cc0-4b9bbdc0a2be" + "f4b62be6-dcc4-4425-8c45-6f75ec6de674" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194759Z:c2ccc137-b6b4-467b-8cc0-4b9bbdc0a2be" + "WESTCENTRALUS:20210217T025137Z:f4b62be6-dcc4-4425-8c45-6f75ec6de674" ], "Date": [ - "Tue, 01 Sep 2020 19:47:58 GMT" + "Wed, 17 Feb 2021 02:51:37 GMT" ], "Content-Length": [ "282" @@ -5268,20 +5576,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5291,29 +5602,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11784" ], "x-ms-request-id": [ - "dae27ac6-fcf2-4675-a7ad-cd85c2b2ffe9" + "1a598547-bc51-451c-915c-1314ca132f81" ], "x-ms-correlation-request-id": [ - "dae27ac6-fcf2-4675-a7ad-cd85c2b2ffe9" + "1a598547-bc51-451c-915c-1314ca132f81" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194819Z:dae27ac6-fcf2-4675-a7ad-cd85c2b2ffe9" + "WESTCENTRALUS:20210217T025158Z:1a598547-bc51-451c-915c-1314ca132f81" ], "Date": [ - "Tue, 01 Sep 2020 19:48:19 GMT" + "Wed, 17 Feb 2021 02:51:57 GMT" ], "Content-Length": [ "282" @@ -5325,20 +5637,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5348,29 +5663,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11783" ], "x-ms-request-id": [ - "108f804d-cdca-462c-84bb-e00ba18c4875" + "9cb17e5a-3ebf-45b8-b688-3ad914a754ea" ], "x-ms-correlation-request-id": [ - "108f804d-cdca-462c-84bb-e00ba18c4875" + "9cb17e5a-3ebf-45b8-b688-3ad914a754ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194839Z:108f804d-cdca-462c-84bb-e00ba18c4875" + "WESTCENTRALUS:20210217T025218Z:9cb17e5a-3ebf-45b8-b688-3ad914a754ea" ], "Date": [ - "Tue, 01 Sep 2020 19:48:39 GMT" + "Wed, 17 Feb 2021 02:52:17 GMT" ], "Content-Length": [ "282" @@ -5382,20 +5698,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5405,29 +5724,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11782" ], "x-ms-request-id": [ - "f968b133-640c-4220-97d7-03cd839ba2d0" + "7c2dc2b1-e4b5-47be-9940-6b443bb58926" ], "x-ms-correlation-request-id": [ - "f968b133-640c-4220-97d7-03cd839ba2d0" + "7c2dc2b1-e4b5-47be-9940-6b443bb58926" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194900Z:f968b133-640c-4220-97d7-03cd839ba2d0" + "WESTCENTRALUS:20210217T025238Z:7c2dc2b1-e4b5-47be-9940-6b443bb58926" ], "Date": [ - "Tue, 01 Sep 2020 19:48:59 GMT" + "Wed, 17 Feb 2021 02:52:38 GMT" ], "Content-Length": [ "282" @@ -5439,20 +5759,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5462,29 +5785,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11781" ], "x-ms-request-id": [ - "5d51c079-f242-4797-b07b-80d35f6e8a5c" + "00831211-a0fa-4e3c-bb0a-4bb787f40b42" ], "x-ms-correlation-request-id": [ - "5d51c079-f242-4797-b07b-80d35f6e8a5c" + "00831211-a0fa-4e3c-bb0a-4bb787f40b42" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194920Z:5d51c079-f242-4797-b07b-80d35f6e8a5c" + "WESTCENTRALUS:20210217T025258Z:00831211-a0fa-4e3c-bb0a-4bb787f40b42" ], "Date": [ - "Tue, 01 Sep 2020 19:49:19 GMT" + "Wed, 17 Feb 2021 02:52:58 GMT" ], "Content-Length": [ "282" @@ -5496,20 +5820,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5519,29 +5846,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11780" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7c05b9f3-72da-48d5-810f-899e5756885e" + "7ad9f116-c60e-4638-8a1e-5a17926c8323" ], "x-ms-correlation-request-id": [ - "7c05b9f3-72da-48d5-810f-899e5756885e" + "7ad9f116-c60e-4638-8a1e-5a17926c8323" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T194940Z:7c05b9f3-72da-48d5-810f-899e5756885e" + "WESTCENTRALUS:20210217T025318Z:7ad9f116-c60e-4638-8a1e-5a17926c8323" ], "Date": [ - "Tue, 01 Sep 2020 19:49:39 GMT" + "Wed, 17 Feb 2021 02:53:18 GMT" ], "Content-Length": [ "282" @@ -5553,20 +5881,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5576,29 +5907,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11778" ], "x-ms-request-id": [ - "7a2693ac-f000-4bd0-9584-a67170c0bab7" + "54621811-8ece-440f-b86f-22148d260852" ], "x-ms-correlation-request-id": [ - "7a2693ac-f000-4bd0-9584-a67170c0bab7" + "54621811-8ece-440f-b86f-22148d260852" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195000Z:7a2693ac-f000-4bd0-9584-a67170c0bab7" + "WESTCENTRALUS:20210217T025338Z:54621811-8ece-440f-b86f-22148d260852" ], "Date": [ - "Tue, 01 Sep 2020 19:49:59 GMT" + "Wed, 17 Feb 2021 02:53:38 GMT" ], "Content-Length": [ "282" @@ -5610,20 +5942,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5633,29 +5968,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11777" ], "x-ms-request-id": [ - "5d4b1687-6946-4735-88dc-e981df1c78f0" + "18dd8611-11f5-42ae-aac2-4fe2641f66a3" ], "x-ms-correlation-request-id": [ - "5d4b1687-6946-4735-88dc-e981df1c78f0" + "18dd8611-11f5-42ae-aac2-4fe2641f66a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195020Z:5d4b1687-6946-4735-88dc-e981df1c78f0" + "WESTCENTRALUS:20210217T025358Z:18dd8611-11f5-42ae-aac2-4fe2641f66a3" ], "Date": [ - "Tue, 01 Sep 2020 19:50:19 GMT" + "Wed, 17 Feb 2021 02:53:58 GMT" ], "Content-Length": [ "282" @@ -5667,20 +6003,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5690,29 +6029,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11776" ], "x-ms-request-id": [ - "8861194f-e759-4dcd-96ee-5974c698b246" + "c3dfede3-4a42-4f34-b7b1-fd3dbd7e5bf8" ], "x-ms-correlation-request-id": [ - "8861194f-e759-4dcd-96ee-5974c698b246" + "c3dfede3-4a42-4f34-b7b1-fd3dbd7e5bf8" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195040Z:8861194f-e759-4dcd-96ee-5974c698b246" + "WESTCENTRALUS:20210217T025419Z:c3dfede3-4a42-4f34-b7b1-fd3dbd7e5bf8" ], "Date": [ - "Tue, 01 Sep 2020 19:50:40 GMT" + "Wed, 17 Feb 2021 02:54:18 GMT" ], "Content-Length": [ "282" @@ -5724,20 +6064,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5747,29 +6090,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11775" ], "x-ms-request-id": [ - "4802b2e3-8c77-4dac-9e27-8df05a7ce546" + "b6143bb2-e552-4c24-89c7-fc01289afd75" ], "x-ms-correlation-request-id": [ - "4802b2e3-8c77-4dac-9e27-8df05a7ce546" + "b6143bb2-e552-4c24-89c7-fc01289afd75" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195100Z:4802b2e3-8c77-4dac-9e27-8df05a7ce546" + "WESTCENTRALUS:20210217T025439Z:b6143bb2-e552-4c24-89c7-fc01289afd75" ], "Date": [ - "Tue, 01 Sep 2020 19:51:00 GMT" + "Wed, 17 Feb 2021 02:54:38 GMT" ], "Content-Length": [ "282" @@ -5781,20 +6125,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5804,29 +6151,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11774" ], "x-ms-request-id": [ - "aa3d5605-38c7-456b-83d8-a3fb68259034" + "1f063fb2-1537-4eaa-aae3-e28279799f17" ], "x-ms-correlation-request-id": [ - "aa3d5605-38c7-456b-83d8-a3fb68259034" + "1f063fb2-1537-4eaa-aae3-e28279799f17" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195120Z:aa3d5605-38c7-456b-83d8-a3fb68259034" + "WESTCENTRALUS:20210217T025459Z:1f063fb2-1537-4eaa-aae3-e28279799f17" ], "Date": [ - "Tue, 01 Sep 2020 19:51:20 GMT" + "Wed, 17 Feb 2021 02:54:58 GMT" ], "Content-Length": [ "282" @@ -5838,20 +6186,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5861,29 +6212,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11780" ], "x-ms-request-id": [ - "39892a25-c6c3-4a0b-9572-760c04d166a7" + "3385ee5e-b1c4-41c5-a7c2-9dd86140c7d6" ], "x-ms-correlation-request-id": [ - "39892a25-c6c3-4a0b-9572-760c04d166a7" + "3385ee5e-b1c4-41c5-a7c2-9dd86140c7d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195140Z:39892a25-c6c3-4a0b-9572-760c04d166a7" + "WESTCENTRALUS:20210217T025519Z:3385ee5e-b1c4-41c5-a7c2-9dd86140c7d6" ], "Date": [ - "Tue, 01 Sep 2020 19:51:40 GMT" + "Wed, 17 Feb 2021 02:55:18 GMT" ], "Content-Length": [ "282" @@ -5895,20 +6247,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5918,29 +6273,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11778" ], "x-ms-request-id": [ - "89d7fbe3-799a-4475-a915-068c80616aae" + "376a07c8-c5f7-4fb6-9a38-6754cc40c6f8" ], "x-ms-correlation-request-id": [ - "89d7fbe3-799a-4475-a915-068c80616aae" + "376a07c8-c5f7-4fb6-9a38-6754cc40c6f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195200Z:89d7fbe3-799a-4475-a915-068c80616aae" + "WESTCENTRALUS:20210217T025539Z:376a07c8-c5f7-4fb6-9a38-6754cc40c6f8" ], "Date": [ - "Tue, 01 Sep 2020 19:52:00 GMT" + "Wed, 17 Feb 2021 02:55:38 GMT" ], "Content-Length": [ "282" @@ -5952,20 +6308,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5975,29 +6334,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11773" ], "x-ms-request-id": [ - "d4fce81c-6fc2-48bb-8eb7-11fd87771f7b" + "8ea90c40-1ee1-45a8-80d0-ae97d355c00d" ], "x-ms-correlation-request-id": [ - "d4fce81c-6fc2-48bb-8eb7-11fd87771f7b" + "8ea90c40-1ee1-45a8-80d0-ae97d355c00d" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195221Z:d4fce81c-6fc2-48bb-8eb7-11fd87771f7b" + "WESTCENTRALUS:20210217T025600Z:8ea90c40-1ee1-45a8-80d0-ae97d355c00d" ], "Date": [ - "Tue, 01 Sep 2020 19:52:20 GMT" + "Wed, 17 Feb 2021 02:55:59 GMT" ], "Content-Length": [ "282" @@ -6009,20 +6369,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6032,29 +6395,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11768" ], "x-ms-request-id": [ - "e3b0db42-4152-4d60-b905-c10cdd0d374e" + "4a4ceeca-ba2d-408b-bbb4-c7c22ca4e04c" ], "x-ms-correlation-request-id": [ - "e3b0db42-4152-4d60-b905-c10cdd0d374e" + "4a4ceeca-ba2d-408b-bbb4-c7c22ca4e04c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195241Z:e3b0db42-4152-4d60-b905-c10cdd0d374e" + "WESTCENTRALUS:20210217T025620Z:4a4ceeca-ba2d-408b-bbb4-c7c22ca4e04c" ], "Date": [ - "Tue, 01 Sep 2020 19:52:40 GMT" + "Wed, 17 Feb 2021 02:56:20 GMT" ], "Content-Length": [ "282" @@ -6066,20 +6430,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6089,29 +6456,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11765" ], "x-ms-request-id": [ - "7ca2d583-d2f8-4402-a672-f72236f72c4c" + "e9054cb5-326f-4ab9-ba71-b1286a13d140" ], "x-ms-correlation-request-id": [ - "7ca2d583-d2f8-4402-a672-f72236f72c4c" + "e9054cb5-326f-4ab9-ba71-b1286a13d140" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195301Z:7ca2d583-d2f8-4402-a672-f72236f72c4c" + "WESTCENTRALUS:20210217T025640Z:e9054cb5-326f-4ab9-ba71-b1286a13d140" ], "Date": [ - "Tue, 01 Sep 2020 19:53:00 GMT" + "Wed, 17 Feb 2021 02:56:40 GMT" ], "Content-Length": [ "282" @@ -6123,20 +6491,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6146,29 +6517,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11760" ], "x-ms-request-id": [ - "3509d782-f5fa-47d1-9f21-287176dd7bb1" + "6bb0c124-fbf3-4a8f-b918-2ef59a352a8d" ], "x-ms-correlation-request-id": [ - "3509d782-f5fa-47d1-9f21-287176dd7bb1" + "6bb0c124-fbf3-4a8f-b918-2ef59a352a8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195321Z:3509d782-f5fa-47d1-9f21-287176dd7bb1" + "WESTCENTRALUS:20210217T025700Z:6bb0c124-fbf3-4a8f-b918-2ef59a352a8d" ], "Date": [ - "Tue, 01 Sep 2020 19:53:21 GMT" + "Wed, 17 Feb 2021 02:57:00 GMT" ], "Content-Length": [ "282" @@ -6180,20 +6552,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6203,29 +6578,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11758" ], "x-ms-request-id": [ - "d5b5bc94-4dee-4626-82d2-191db55587be" + "649fe3ff-d0e8-4327-acc9-28c1ee8bf7c5" ], "x-ms-correlation-request-id": [ - "d5b5bc94-4dee-4626-82d2-191db55587be" + "649fe3ff-d0e8-4327-acc9-28c1ee8bf7c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195341Z:d5b5bc94-4dee-4626-82d2-191db55587be" + "WESTCENTRALUS:20210217T025720Z:649fe3ff-d0e8-4327-acc9-28c1ee8bf7c5" ], "Date": [ - "Tue, 01 Sep 2020 19:53:41 GMT" + "Wed, 17 Feb 2021 02:57:20 GMT" ], "Content-Length": [ "282" @@ -6237,20 +6613,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6260,29 +6639,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11755" ], "x-ms-request-id": [ - "d7148dbc-4b60-449a-a7d1-fe2c01f461cb" + "c68a9ba8-821f-4460-8461-4a407d80c0a0" ], "x-ms-correlation-request-id": [ - "d7148dbc-4b60-449a-a7d1-fe2c01f461cb" + "c68a9ba8-821f-4460-8461-4a407d80c0a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195401Z:d7148dbc-4b60-449a-a7d1-fe2c01f461cb" + "WESTCENTRALUS:20210217T025740Z:c68a9ba8-821f-4460-8461-4a407d80c0a0" ], "Date": [ - "Tue, 01 Sep 2020 19:54:00 GMT" + "Wed, 17 Feb 2021 02:57:40 GMT" ], "Content-Length": [ "282" @@ -6294,20 +6674,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6317,29 +6700,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11752" ], "x-ms-request-id": [ - "fc9946ea-1276-4eac-88e4-8436c12faccf" + "db974b36-8f79-42d8-809d-4f36094bef42" ], "x-ms-correlation-request-id": [ - "fc9946ea-1276-4eac-88e4-8436c12faccf" + "db974b36-8f79-42d8-809d-4f36094bef42" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195421Z:fc9946ea-1276-4eac-88e4-8436c12faccf" + "WESTCENTRALUS:20210217T025800Z:db974b36-8f79-42d8-809d-4f36094bef42" ], "Date": [ - "Tue, 01 Sep 2020 19:54:20 GMT" + "Wed, 17 Feb 2021 02:58:00 GMT" ], "Content-Length": [ "282" @@ -6351,20 +6735,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6374,29 +6761,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11750" ], "x-ms-request-id": [ - "64fc41e8-a8ba-4238-ae32-c70f43305062" + "586e4e34-4bdc-4fa5-a22d-c3b862597642" ], "x-ms-correlation-request-id": [ - "64fc41e8-a8ba-4238-ae32-c70f43305062" + "586e4e34-4bdc-4fa5-a22d-c3b862597642" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195441Z:64fc41e8-a8ba-4238-ae32-c70f43305062" + "WESTCENTRALUS:20210217T025821Z:586e4e34-4bdc-4fa5-a22d-c3b862597642" ], "Date": [ - "Tue, 01 Sep 2020 19:54:40 GMT" + "Wed, 17 Feb 2021 02:58:20 GMT" ], "Content-Length": [ "282" @@ -6408,20 +6796,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6431,29 +6822,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11747" ], "x-ms-request-id": [ - "baec851f-1ab9-47d7-96f9-d5762c547cba" + "c45368b0-8362-40e6-8cd5-e81e1b6d743a" ], "x-ms-correlation-request-id": [ - "baec851f-1ab9-47d7-96f9-d5762c547cba" + "c45368b0-8362-40e6-8cd5-e81e1b6d743a" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195501Z:baec851f-1ab9-47d7-96f9-d5762c547cba" + "WESTCENTRALUS:20210217T025841Z:c45368b0-8362-40e6-8cd5-e81e1b6d743a" ], "Date": [ - "Tue, 01 Sep 2020 19:55:00 GMT" + "Wed, 17 Feb 2021 02:58:41 GMT" ], "Content-Length": [ "282" @@ -6465,20 +6857,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6488,29 +6883,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11745" ], "x-ms-request-id": [ - "d421ebaf-1561-4ac7-afb7-2c45d7622130" + "44fb7231-5ce9-42c2-aa91-3458913404ce" ], "x-ms-correlation-request-id": [ - "d421ebaf-1561-4ac7-afb7-2c45d7622130" + "44fb7231-5ce9-42c2-aa91-3458913404ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195521Z:d421ebaf-1561-4ac7-afb7-2c45d7622130" + "WESTCENTRALUS:20210217T025902Z:44fb7231-5ce9-42c2-aa91-3458913404ce" ], "Date": [ - "Tue, 01 Sep 2020 19:55:21 GMT" + "Wed, 17 Feb 2021 02:59:01 GMT" ], "Content-Length": [ "282" @@ -6522,20 +6918,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6545,29 +6944,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11743" ], "x-ms-request-id": [ - "74aca0ba-e1a9-410c-a251-9f41386fabac" + "74e28f41-062c-4ebb-9a27-9965f59671ae" ], "x-ms-correlation-request-id": [ - "74aca0ba-e1a9-410c-a251-9f41386fabac" + "74e28f41-062c-4ebb-9a27-9965f59671ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195541Z:74aca0ba-e1a9-410c-a251-9f41386fabac" + "WESTCENTRALUS:20210217T025922Z:74e28f41-062c-4ebb-9a27-9965f59671ae" ], "Date": [ - "Tue, 01 Sep 2020 19:55:41 GMT" + "Wed, 17 Feb 2021 02:59:21 GMT" ], "Content-Length": [ "282" @@ -6579,20 +6979,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6602,29 +7005,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "11742" ], "x-ms-request-id": [ - "4d36a5c8-ea17-43f8-b0ea-d29a9a8fbefe" + "8be3c895-b977-4432-a2b2-2a3180d5b9a5" ], "x-ms-correlation-request-id": [ - "4d36a5c8-ea17-43f8-b0ea-d29a9a8fbefe" + "8be3c895-b977-4432-a2b2-2a3180d5b9a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195602Z:4d36a5c8-ea17-43f8-b0ea-d29a9a8fbefe" + "WESTCENTRALUS:20210217T025942Z:8be3c895-b977-4432-a2b2-2a3180d5b9a5" ], "Date": [ - "Tue, 01 Sep 2020 19:56:01 GMT" + "Wed, 17 Feb 2021 02:59:42 GMT" ], "Content-Length": [ "282" @@ -6636,20 +7040,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/fabb0003-aa30-4792-a880-ed47689f6b39?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZhYmIwMDAzLWFhMzAtNDc5Mi1hODgwLWVkNDc2ODlmNmIzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f0fca7-521c-4127-a724-b328cc4d7e59" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6659,32 +7066,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11751" ], "x-ms-request-id": [ - "26ec262b-c9d0-4e44-b011-a961a58548f8" + "ada9f623-4e81-4fd2-a7bb-2a7c92f3f534" ], "x-ms-correlation-request-id": [ - "26ec262b-c9d0-4e44-b011-a961a58548f8" + "ada9f623-4e81-4fd2-a7bb-2a7c92f3f534" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195622Z:26ec262b-c9d0-4e44-b011-a961a58548f8" + "WESTCENTRALUS:20210217T030002Z:ada9f623-4e81-4fd2-a7bb-2a7c92f3f534" ], "Date": [ - "Tue, 01 Sep 2020 19:56:21 GMT" + "Wed, 17 Feb 2021 03:00:02 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6693,20 +7101,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"fabb0003-aa30-4792-a880-ed47689f6b39\",\r\n \"startTime\": \"2021-02-17T02:47:35.7295132Z\",\r\n \"endTime\": \"2021-02-17T02:59:53.3178687Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6716,29 +7127,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11745" ], "x-ms-request-id": [ - "9e7178e8-ce8b-43c9-baae-542e6af173d9" + "3eaabdde-445a-4bbe-a132-1c64e7dd1681" ], "x-ms-correlation-request-id": [ - "9e7178e8-ce8b-43c9-baae-542e6af173d9" + "3eaabdde-445a-4bbe-a132-1c64e7dd1681" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195642Z:9e7178e8-ce8b-43c9-baae-542e6af173d9" + "WESTCENTRALUS:20210217T030024Z:3eaabdde-445a-4bbe-a132-1c64e7dd1681" ], "Date": [ - "Tue, 01 Sep 2020 19:56:41 GMT" + "Wed, 17 Feb 2021 03:00:23 GMT" ], "Content-Length": [ "282" @@ -6750,20 +7162,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6773,29 +7188,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11743" ], "x-ms-request-id": [ - "ccfcaa2a-1ae1-425f-ad08-7a96b46047f4" + "3dfeb7ae-f287-4d02-8881-be15d964d019" ], "x-ms-correlation-request-id": [ - "ccfcaa2a-1ae1-425f-ad08-7a96b46047f4" + "3dfeb7ae-f287-4d02-8881-be15d964d019" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195702Z:ccfcaa2a-1ae1-425f-ad08-7a96b46047f4" + "WESTCENTRALUS:20210217T030044Z:3dfeb7ae-f287-4d02-8881-be15d964d019" ], "Date": [ - "Tue, 01 Sep 2020 19:57:01 GMT" + "Wed, 17 Feb 2021 03:00:43 GMT" ], "Content-Length": [ "282" @@ -6807,20 +7223,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6830,29 +7249,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11738" ], "x-ms-request-id": [ - "ba477463-d92f-43ac-9bd3-a088ce987e75" + "27e27f93-6289-4845-9d5a-0393858be8ab" ], "x-ms-correlation-request-id": [ - "ba477463-d92f-43ac-9bd3-a088ce987e75" + "27e27f93-6289-4845-9d5a-0393858be8ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195722Z:ba477463-d92f-43ac-9bd3-a088ce987e75" + "WESTCENTRALUS:20210217T030105Z:27e27f93-6289-4845-9d5a-0393858be8ab" ], "Date": [ - "Tue, 01 Sep 2020 19:57:21 GMT" + "Wed, 17 Feb 2021 03:01:04 GMT" ], "Content-Length": [ "282" @@ -6864,20 +7284,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6887,29 +7310,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11736" ], "x-ms-request-id": [ - "d6b46146-6313-40b9-b5d1-647a55322d03" + "0b4f6c11-c07f-483f-8203-db1e791f94e3" ], "x-ms-correlation-request-id": [ - "d6b46146-6313-40b9-b5d1-647a55322d03" + "0b4f6c11-c07f-483f-8203-db1e791f94e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195742Z:d6b46146-6313-40b9-b5d1-647a55322d03" + "WESTCENTRALUS:20210217T030125Z:0b4f6c11-c07f-483f-8203-db1e791f94e3" ], "Date": [ - "Tue, 01 Sep 2020 19:57:41 GMT" + "Wed, 17 Feb 2021 03:01:24 GMT" ], "Content-Length": [ "282" @@ -6921,20 +7345,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6944,29 +7371,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11733" ], "x-ms-request-id": [ - "e3b78dbb-25f7-4ace-8775-a43b1adcb104" + "ca5f83ef-c132-44d7-9796-4f088953c5e1" ], "x-ms-correlation-request-id": [ - "e3b78dbb-25f7-4ace-8775-a43b1adcb104" + "ca5f83ef-c132-44d7-9796-4f088953c5e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195802Z:e3b78dbb-25f7-4ace-8775-a43b1adcb104" + "WESTCENTRALUS:20210217T030146Z:ca5f83ef-c132-44d7-9796-4f088953c5e1" ], "Date": [ - "Tue, 01 Sep 2020 19:58:01 GMT" + "Wed, 17 Feb 2021 03:01:45 GMT" ], "Content-Length": [ "282" @@ -6978,20 +7406,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7001,29 +7432,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11732" ], "x-ms-request-id": [ - "36702618-9300-46c8-9304-550ad14bbc93" + "4ddef305-8bf3-489a-bfc1-22cde0c28d31" ], "x-ms-correlation-request-id": [ - "36702618-9300-46c8-9304-550ad14bbc93" + "4ddef305-8bf3-489a-bfc1-22cde0c28d31" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195822Z:36702618-9300-46c8-9304-550ad14bbc93" + "WESTCENTRALUS:20210217T030206Z:4ddef305-8bf3-489a-bfc1-22cde0c28d31" ], "Date": [ - "Tue, 01 Sep 2020 19:58:21 GMT" + "Wed, 17 Feb 2021 03:02:06 GMT" ], "Content-Length": [ "282" @@ -7035,20 +7467,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7058,29 +7493,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11730" ], "x-ms-request-id": [ - "d5cbb9fc-f7ce-47b4-bc4f-ff59c47e4648" + "fa40486d-2f80-4632-bc47-81559bf96b1c" ], "x-ms-correlation-request-id": [ - "d5cbb9fc-f7ce-47b4-bc4f-ff59c47e4648" + "fa40486d-2f80-4632-bc47-81559bf96b1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195842Z:d5cbb9fc-f7ce-47b4-bc4f-ff59c47e4648" + "WESTCENTRALUS:20210217T030226Z:fa40486d-2f80-4632-bc47-81559bf96b1c" ], "Date": [ - "Tue, 01 Sep 2020 19:58:41 GMT" + "Wed, 17 Feb 2021 03:02:26 GMT" ], "Content-Length": [ "282" @@ -7092,20 +7528,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7115,29 +7554,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "11728" ], "x-ms-request-id": [ - "644687d6-5b2a-4cbc-8924-7a9faab6826b" + "c2813bc5-b89a-4a7d-aa81-58ee12f461ad" ], "x-ms-correlation-request-id": [ - "644687d6-5b2a-4cbc-8924-7a9faab6826b" + "c2813bc5-b89a-4a7d-aa81-58ee12f461ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195902Z:644687d6-5b2a-4cbc-8924-7a9faab6826b" + "WESTCENTRALUS:20210217T030246Z:c2813bc5-b89a-4a7d-aa81-58ee12f461ad" ], "Date": [ - "Tue, 01 Sep 2020 19:59:02 GMT" + "Wed, 17 Feb 2021 03:02:46 GMT" ], "Content-Length": [ "282" @@ -7149,20 +7589,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7172,29 +7615,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" + "11727" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "544304f2-3db1-4998-bdea-ce1d89fafc66" + "cfc7c2c1-6bfa-4f4c-be8c-21db18bd9fee" ], "x-ms-correlation-request-id": [ - "544304f2-3db1-4998-bdea-ce1d89fafc66" + "cfc7c2c1-6bfa-4f4c-be8c-21db18bd9fee" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195922Z:544304f2-3db1-4998-bdea-ce1d89fafc66" + "WESTCENTRALUS:20210217T030306Z:cfc7c2c1-6bfa-4f4c-be8c-21db18bd9fee" ], "Date": [ - "Tue, 01 Sep 2020 19:59:22 GMT" + "Wed, 17 Feb 2021 03:03:06 GMT" ], "Content-Length": [ "282" @@ -7206,20 +7650,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7229,29 +7676,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11726" ], "x-ms-request-id": [ - "4810a747-2142-418e-b14a-8d5caa6955e5" + "fe246204-b548-4b94-ab02-3000522fabf2" ], "x-ms-correlation-request-id": [ - "4810a747-2142-418e-b14a-8d5caa6955e5" + "fe246204-b548-4b94-ab02-3000522fabf2" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T195943Z:4810a747-2142-418e-b14a-8d5caa6955e5" + "WESTCENTRALUS:20210217T030327Z:fe246204-b548-4b94-ab02-3000522fabf2" ], "Date": [ - "Tue, 01 Sep 2020 19:59:42 GMT" + "Wed, 17 Feb 2021 03:03:26 GMT" ], "Content-Length": [ "282" @@ -7263,20 +7711,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7286,29 +7737,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11725" ], "x-ms-request-id": [ - "7e575920-30cf-4343-98c9-dd41f84d624d" + "a59885fb-c7f5-4b1d-bb5c-c45516507f6e" ], "x-ms-correlation-request-id": [ - "7e575920-30cf-4343-98c9-dd41f84d624d" + "a59885fb-c7f5-4b1d-bb5c-c45516507f6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200003Z:7e575920-30cf-4343-98c9-dd41f84d624d" + "WESTCENTRALUS:20210217T030347Z:a59885fb-c7f5-4b1d-bb5c-c45516507f6e" ], "Date": [ - "Tue, 01 Sep 2020 20:00:02 GMT" + "Wed, 17 Feb 2021 03:03:46 GMT" ], "Content-Length": [ "282" @@ -7320,20 +7772,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/38a00000-d9fc-4620-b559-46fa6d134c42?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM4YTAwMDAwLWQ5ZmMtNDYyMC1iNTU5LTQ2ZmE2ZDEzNGM0Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7343,32 +7798,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11724" ], "x-ms-request-id": [ - "a2c268b4-7a75-49ba-a8ac-519dd0c8d1f3" + "92eb47ff-5628-46b9-98f0-b57c35a4e8b8" ], "x-ms-correlation-request-id": [ - "a2c268b4-7a75-49ba-a8ac-519dd0c8d1f3" + "92eb47ff-5628-46b9-98f0-b57c35a4e8b8" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200023Z:a2c268b4-7a75-49ba-a8ac-519dd0c8d1f3" + "WESTCENTRALUS:20210217T030407Z:92eb47ff-5628-46b9-98f0-b57c35a4e8b8" ], "Date": [ - "Tue, 01 Sep 2020 20:00:22 GMT" + "Wed, 17 Feb 2021 03:04:06 GMT" ], "Content-Length": [ - "294" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7377,20 +7833,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"38a00000-d9fc-4620-b559-46fa6d134c42\",\r\n \"startTime\": \"2020-09-01T19:45:56.0074725Z\",\r\n \"endTime\": \"2020-09-01T20:00:12.5394797Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7400,29 +7859,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11723" ], "x-ms-request-id": [ - "e54ab1da-3433-4e23-a4ed-6ec86485e53b" + "0c5cc167-7a63-47bd-907e-c92eb1836e31" ], "x-ms-correlation-request-id": [ - "e54ab1da-3433-4e23-a4ed-6ec86485e53b" + "0c5cc167-7a63-47bd-907e-c92eb1836e31" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200044Z:e54ab1da-3433-4e23-a4ed-6ec86485e53b" + "WESTCENTRALUS:20210217T030427Z:0c5cc167-7a63-47bd-907e-c92eb1836e31" ], "Date": [ - "Tue, 01 Sep 2020 20:00:43 GMT" + "Wed, 17 Feb 2021 03:04:27 GMT" ], "Content-Length": [ "282" @@ -7434,20 +7894,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7457,29 +7920,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11722" ], "x-ms-request-id": [ - "a5ab50f3-e223-4f37-bf7e-9e9a339e6be1" + "d57762db-b002-4f0b-9f89-df50db61f4b1" ], "x-ms-correlation-request-id": [ - "a5ab50f3-e223-4f37-bf7e-9e9a339e6be1" + "d57762db-b002-4f0b-9f89-df50db61f4b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200104Z:a5ab50f3-e223-4f37-bf7e-9e9a339e6be1" + "WESTCENTRALUS:20210217T030448Z:d57762db-b002-4f0b-9f89-df50db61f4b1" ], "Date": [ - "Tue, 01 Sep 2020 20:01:03 GMT" + "Wed, 17 Feb 2021 03:04:47 GMT" ], "Content-Length": [ "282" @@ -7491,20 +7955,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7514,29 +7981,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" + "11722" ], "x-ms-request-id": [ - "f478cc98-8385-4884-90bd-23f0bbbd780b" + "3b5b7b98-4de5-4608-b6f6-0a39ee8a5599" ], "x-ms-correlation-request-id": [ - "f478cc98-8385-4884-90bd-23f0bbbd780b" + "3b5b7b98-4de5-4608-b6f6-0a39ee8a5599" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200124Z:f478cc98-8385-4884-90bd-23f0bbbd780b" + "WESTCENTRALUS:20210217T030508Z:3b5b7b98-4de5-4608-b6f6-0a39ee8a5599" ], "Date": [ - "Tue, 01 Sep 2020 20:01:23 GMT" + "Wed, 17 Feb 2021 03:05:08 GMT" ], "Content-Length": [ "282" @@ -7548,20 +8016,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7571,29 +8042,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11721" ], "x-ms-request-id": [ - "7ccabd7f-d865-4ef0-8403-2541105be2d3" + "8a7bb82b-f7cd-4311-8d80-f1b79e4ba873" ], "x-ms-correlation-request-id": [ - "7ccabd7f-d865-4ef0-8403-2541105be2d3" + "8a7bb82b-f7cd-4311-8d80-f1b79e4ba873" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200144Z:7ccabd7f-d865-4ef0-8403-2541105be2d3" + "WESTCENTRALUS:20210217T030528Z:8a7bb82b-f7cd-4311-8d80-f1b79e4ba873" ], "Date": [ - "Tue, 01 Sep 2020 20:01:43 GMT" + "Wed, 17 Feb 2021 03:05:28 GMT" ], "Content-Length": [ "282" @@ -7605,20 +8077,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7628,29 +8103,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11720" ], "x-ms-request-id": [ - "a7a4963f-9592-429d-a194-1ffb01aeb4db" + "afcb4f9c-b1f7-40d6-b540-5cf372d5db48" ], "x-ms-correlation-request-id": [ - "a7a4963f-9592-429d-a194-1ffb01aeb4db" + "afcb4f9c-b1f7-40d6-b540-5cf372d5db48" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200204Z:a7a4963f-9592-429d-a194-1ffb01aeb4db" + "WESTCENTRALUS:20210217T030548Z:afcb4f9c-b1f7-40d6-b540-5cf372d5db48" ], "Date": [ - "Tue, 01 Sep 2020 20:02:04 GMT" + "Wed, 17 Feb 2021 03:05:48 GMT" ], "Content-Length": [ "282" @@ -7662,20 +8138,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7685,29 +8164,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11718" ], "x-ms-request-id": [ - "57b600e9-c5e6-41a6-8231-7c47caa56052" + "89d01e59-f196-43dd-ac7f-80ae010fb1bc" ], "x-ms-correlation-request-id": [ - "57b600e9-c5e6-41a6-8231-7c47caa56052" + "89d01e59-f196-43dd-ac7f-80ae010fb1bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200224Z:57b600e9-c5e6-41a6-8231-7c47caa56052" + "WESTCENTRALUS:20210217T030608Z:89d01e59-f196-43dd-ac7f-80ae010fb1bc" ], "Date": [ - "Tue, 01 Sep 2020 20:02:24 GMT" + "Wed, 17 Feb 2021 03:06:08 GMT" ], "Content-Length": [ "282" @@ -7719,20 +8199,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7742,29 +8225,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11715" ], "x-ms-request-id": [ - "3fd055a1-77d0-4df2-9600-ffc5a843d79b" + "5661e375-83ce-40b7-be84-0dcfc31911ab" ], "x-ms-correlation-request-id": [ - "3fd055a1-77d0-4df2-9600-ffc5a843d79b" + "5661e375-83ce-40b7-be84-0dcfc31911ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200244Z:3fd055a1-77d0-4df2-9600-ffc5a843d79b" + "WESTCENTRALUS:20210217T030628Z:5661e375-83ce-40b7-be84-0dcfc31911ab" ], "Date": [ - "Tue, 01 Sep 2020 20:02:44 GMT" + "Wed, 17 Feb 2021 03:06:28 GMT" ], "Content-Length": [ "282" @@ -7776,20 +8260,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7799,29 +8286,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11713" ], "x-ms-request-id": [ - "1bb3e5cc-2665-42a6-84f6-cc9cdc14591a" + "5c84a7df-dca7-46ed-95bd-645bdc012efd" ], "x-ms-correlation-request-id": [ - "1bb3e5cc-2665-42a6-84f6-cc9cdc14591a" + "5c84a7df-dca7-46ed-95bd-645bdc012efd" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200304Z:1bb3e5cc-2665-42a6-84f6-cc9cdc14591a" + "WESTCENTRALUS:20210217T030649Z:5c84a7df-dca7-46ed-95bd-645bdc012efd" ], "Date": [ - "Tue, 01 Sep 2020 20:03:04 GMT" + "Wed, 17 Feb 2021 03:06:48 GMT" ], "Content-Length": [ "282" @@ -7833,20 +8321,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7856,29 +8347,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11710" ], "x-ms-request-id": [ - "99648d65-c46c-4e9c-951d-742d756ec3eb" + "10901479-695f-4647-97ff-4d73396c441f" ], "x-ms-correlation-request-id": [ - "99648d65-c46c-4e9c-951d-742d756ec3eb" + "10901479-695f-4647-97ff-4d73396c441f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200324Z:99648d65-c46c-4e9c-951d-742d756ec3eb" + "WESTCENTRALUS:20210217T030709Z:10901479-695f-4647-97ff-4d73396c441f" ], "Date": [ - "Tue, 01 Sep 2020 20:03:24 GMT" + "Wed, 17 Feb 2021 03:07:08 GMT" ], "Content-Length": [ "282" @@ -7890,20 +8382,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7913,29 +8408,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11708" ], "x-ms-request-id": [ - "d0416906-4af0-47cf-a645-bf213f9633a1" + "62a2a1cf-5f7a-4a1c-a11a-555e61fd543b" ], "x-ms-correlation-request-id": [ - "d0416906-4af0-47cf-a645-bf213f9633a1" + "62a2a1cf-5f7a-4a1c-a11a-555e61fd543b" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200344Z:d0416906-4af0-47cf-a645-bf213f9633a1" + "WESTCENTRALUS:20210217T030729Z:62a2a1cf-5f7a-4a1c-a11a-555e61fd543b" ], "Date": [ - "Tue, 01 Sep 2020 20:03:44 GMT" + "Wed, 17 Feb 2021 03:07:28 GMT" ], "Content-Length": [ "282" @@ -7947,20 +8443,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7970,29 +8469,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11706" ], "x-ms-request-id": [ - "40147a23-d760-452f-ac9c-7d2b6e2f86ef" + "5434d071-d78d-4474-8cea-15c4924f89b7" ], "x-ms-correlation-request-id": [ - "40147a23-d760-452f-ac9c-7d2b6e2f86ef" + "5434d071-d78d-4474-8cea-15c4924f89b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200405Z:40147a23-d760-452f-ac9c-7d2b6e2f86ef" + "WESTCENTRALUS:20210217T030749Z:5434d071-d78d-4474-8cea-15c4924f89b7" ], "Date": [ - "Tue, 01 Sep 2020 20:04:04 GMT" + "Wed, 17 Feb 2021 03:07:48 GMT" ], "Content-Length": [ "282" @@ -8004,20 +8504,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8027,29 +8530,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" ], "x-ms-request-id": [ - "ecb3f7ae-a5c8-416e-b32d-c2f43215d3d8" + "432f0164-a265-4e16-8125-1d58dbc94c64" ], "x-ms-correlation-request-id": [ - "ecb3f7ae-a5c8-416e-b32d-c2f43215d3d8" + "432f0164-a265-4e16-8125-1d58dbc94c64" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200425Z:ecb3f7ae-a5c8-416e-b32d-c2f43215d3d8" + "WESTCENTRALUS:20210217T030809Z:432f0164-a265-4e16-8125-1d58dbc94c64" ], "Date": [ - "Tue, 01 Sep 2020 20:04:24 GMT" + "Wed, 17 Feb 2021 03:08:08 GMT" ], "Content-Length": [ "282" @@ -8061,20 +8565,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8084,29 +8591,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11703" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2d3f322d-a97b-4c35-b42c-260fa14da0bb" + "7ba61f9c-0c25-490c-82c9-dd36f40d72c1" ], "x-ms-correlation-request-id": [ - "2d3f322d-a97b-4c35-b42c-260fa14da0bb" + "7ba61f9c-0c25-490c-82c9-dd36f40d72c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200445Z:2d3f322d-a97b-4c35-b42c-260fa14da0bb" + "WESTCENTRALUS:20210217T030829Z:7ba61f9c-0c25-490c-82c9-dd36f40d72c1" ], "Date": [ - "Tue, 01 Sep 2020 20:04:44 GMT" + "Wed, 17 Feb 2021 03:08:29 GMT" ], "Content-Length": [ "282" @@ -8118,20 +8626,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8141,29 +8652,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "11702" ], "x-ms-request-id": [ - "e9d35e78-9ac6-45c5-b960-b83593612b9e" + "69220bb7-df4d-4e3a-b3f4-06aa34eddbdc" ], "x-ms-correlation-request-id": [ - "e9d35e78-9ac6-45c5-b960-b83593612b9e" + "69220bb7-df4d-4e3a-b3f4-06aa34eddbdc" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200505Z:e9d35e78-9ac6-45c5-b960-b83593612b9e" + "WESTCENTRALUS:20210217T030850Z:69220bb7-df4d-4e3a-b3f4-06aa34eddbdc" ], "Date": [ - "Tue, 01 Sep 2020 20:05:05 GMT" + "Wed, 17 Feb 2021 03:08:50 GMT" ], "Content-Length": [ "282" @@ -8175,20 +8687,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8198,29 +8713,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11701" ], "x-ms-request-id": [ - "4100057d-90c0-439b-a507-f4492f908a59" + "5dade223-9373-4bf9-b9a7-f24d68b86631" ], "x-ms-correlation-request-id": [ - "4100057d-90c0-439b-a507-f4492f908a59" + "5dade223-9373-4bf9-b9a7-f24d68b86631" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200525Z:4100057d-90c0-439b-a507-f4492f908a59" + "WESTCENTRALUS:20210217T030910Z:5dade223-9373-4bf9-b9a7-f24d68b86631" ], "Date": [ - "Tue, 01 Sep 2020 20:05:25 GMT" + "Wed, 17 Feb 2021 03:09:10 GMT" ], "Content-Length": [ "282" @@ -8232,20 +8748,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8255,29 +8774,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11700" ], "x-ms-request-id": [ - "3b0067bc-0d6f-4d9a-a668-407edcf60d2a" + "2a768136-c2f6-4394-ab6f-8f1ea38bb117" ], "x-ms-correlation-request-id": [ - "3b0067bc-0d6f-4d9a-a668-407edcf60d2a" + "2a768136-c2f6-4394-ab6f-8f1ea38bb117" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200545Z:3b0067bc-0d6f-4d9a-a668-407edcf60d2a" + "WESTCENTRALUS:20210217T030930Z:2a768136-c2f6-4394-ab6f-8f1ea38bb117" ], "Date": [ - "Tue, 01 Sep 2020 20:05:45 GMT" + "Wed, 17 Feb 2021 03:09:30 GMT" ], "Content-Length": [ "282" @@ -8289,20 +8809,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8312,29 +8835,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11699" ], "x-ms-request-id": [ - "90df61e4-cfc9-41be-ae9b-000904717b64" + "8e3646c5-07f2-4a04-9f18-1e8b2bf3ceb3" ], "x-ms-correlation-request-id": [ - "90df61e4-cfc9-41be-ae9b-000904717b64" + "8e3646c5-07f2-4a04-9f18-1e8b2bf3ceb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200605Z:90df61e4-cfc9-41be-ae9b-000904717b64" + "WESTCENTRALUS:20210217T030951Z:8e3646c5-07f2-4a04-9f18-1e8b2bf3ceb3" ], "Date": [ - "Tue, 01 Sep 2020 20:06:04 GMT" + "Wed, 17 Feb 2021 03:09:50 GMT" ], "Content-Length": [ "282" @@ -8346,20 +8870,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8369,29 +8896,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11711" ], "x-ms-request-id": [ - "f955a646-a9ad-4c7e-83d7-1ab3b0cac4ae" + "d0052e77-786f-445d-ba5d-da245449dcf2" ], "x-ms-correlation-request-id": [ - "f955a646-a9ad-4c7e-83d7-1ab3b0cac4ae" + "d0052e77-786f-445d-ba5d-da245449dcf2" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200625Z:f955a646-a9ad-4c7e-83d7-1ab3b0cac4ae" + "WESTCENTRALUS:20210217T031011Z:d0052e77-786f-445d-ba5d-da245449dcf2" ], "Date": [ - "Tue, 01 Sep 2020 20:06:24 GMT" + "Wed, 17 Feb 2021 03:10:10 GMT" ], "Content-Length": [ "282" @@ -8403,20 +8931,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8426,29 +8957,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "11710" ], "x-ms-request-id": [ - "c5efe464-ca2b-4d2e-823e-b880ae74b438" + "9eb5fc16-f15d-49ad-9607-dcc39ce044d5" ], "x-ms-correlation-request-id": [ - "c5efe464-ca2b-4d2e-823e-b880ae74b438" + "9eb5fc16-f15d-49ad-9607-dcc39ce044d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200645Z:c5efe464-ca2b-4d2e-823e-b880ae74b438" + "WESTCENTRALUS:20210217T031031Z:9eb5fc16-f15d-49ad-9607-dcc39ce044d5" ], "Date": [ - "Tue, 01 Sep 2020 20:06:44 GMT" + "Wed, 17 Feb 2021 03:10:30 GMT" ], "Content-Length": [ "282" @@ -8460,20 +8992,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8483,29 +9018,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11709" ], "x-ms-request-id": [ - "e7fcfe66-b1f6-4d69-a171-64bd578e6ed5" + "b4275bd9-92f9-4adc-9b51-81812f6000c9" ], "x-ms-correlation-request-id": [ - "e7fcfe66-b1f6-4d69-a171-64bd578e6ed5" + "b4275bd9-92f9-4adc-9b51-81812f6000c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200705Z:e7fcfe66-b1f6-4d69-a171-64bd578e6ed5" + "WESTCENTRALUS:20210217T031051Z:b4275bd9-92f9-4adc-9b51-81812f6000c9" ], "Date": [ - "Tue, 01 Sep 2020 20:07:04 GMT" + "Wed, 17 Feb 2021 03:10:50 GMT" ], "Content-Length": [ "282" @@ -8517,20 +9053,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8540,29 +9079,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11708" ], "x-ms-request-id": [ - "19f8b708-2f36-4434-aaf3-39732284ba2b" + "a97a8f49-8c65-434a-81a8-3a5da6b2b6a5" ], "x-ms-correlation-request-id": [ - "19f8b708-2f36-4434-aaf3-39732284ba2b" + "a97a8f49-8c65-434a-81a8-3a5da6b2b6a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200725Z:19f8b708-2f36-4434-aaf3-39732284ba2b" + "WESTCENTRALUS:20210217T031111Z:a97a8f49-8c65-434a-81a8-3a5da6b2b6a5" ], "Date": [ - "Tue, 01 Sep 2020 20:07:25 GMT" + "Wed, 17 Feb 2021 03:11:11 GMT" ], "Content-Length": [ "282" @@ -8574,20 +9114,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8597,29 +9140,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "11707" ], "x-ms-request-id": [ - "3561247e-6736-4e52-b6ee-2adcc03639ca" + "1a7754bd-68ca-4b0f-89db-209bd057bc18" ], "x-ms-correlation-request-id": [ - "3561247e-6736-4e52-b6ee-2adcc03639ca" + "1a7754bd-68ca-4b0f-89db-209bd057bc18" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200745Z:3561247e-6736-4e52-b6ee-2adcc03639ca" + "WESTCENTRALUS:20210217T031131Z:1a7754bd-68ca-4b0f-89db-209bd057bc18" ], "Date": [ - "Tue, 01 Sep 2020 20:07:45 GMT" + "Wed, 17 Feb 2021 03:11:31 GMT" ], "Content-Length": [ "282" @@ -8631,20 +9175,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8654,29 +9201,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" + "11706" ], "x-ms-request-id": [ - "4e0edf09-4ce7-4447-a8f9-85f9692c83c9" + "fba15fc6-71ea-41cc-9072-cb78ad976295" ], "x-ms-correlation-request-id": [ - "4e0edf09-4ce7-4447-a8f9-85f9692c83c9" + "fba15fc6-71ea-41cc-9072-cb78ad976295" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200806Z:4e0edf09-4ce7-4447-a8f9-85f9692c83c9" + "WESTCENTRALUS:20210217T031151Z:fba15fc6-71ea-41cc-9072-cb78ad976295" ], "Date": [ - "Tue, 01 Sep 2020 20:08:05 GMT" + "Wed, 17 Feb 2021 03:11:51 GMT" ], "Content-Length": [ "282" @@ -8688,20 +9236,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8711,29 +9262,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11705" ], "x-ms-request-id": [ - "3e125766-49b3-4715-ab09-3ff2d143be9b" + "ea9d7b59-14ef-48dd-882e-ca6039570ffe" ], "x-ms-correlation-request-id": [ - "3e125766-49b3-4715-ab09-3ff2d143be9b" + "ea9d7b59-14ef-48dd-882e-ca6039570ffe" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200826Z:3e125766-49b3-4715-ab09-3ff2d143be9b" + "WESTCENTRALUS:20210217T031212Z:ea9d7b59-14ef-48dd-882e-ca6039570ffe" ], "Date": [ - "Tue, 01 Sep 2020 20:08:25 GMT" + "Wed, 17 Feb 2021 03:12:11 GMT" ], "Content-Length": [ "282" @@ -8745,20 +9297,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/83350003-d8ef-42e5-9b40-81fda86c1e51?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzMzUwMDAzLWQ4ZWYtNDJlNS05YjQwLTgxZmRhODZjMWU1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cd92fa-be7e-4c5c-a383-a0a3880b9e21" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8768,32 +9323,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11702" ], "x-ms-request-id": [ - "5722a774-0d87-493f-8900-f50fc4d157b1" + "7dec5aad-e286-4610-88ba-2373c93675d9" ], "x-ms-correlation-request-id": [ - "5722a774-0d87-493f-8900-f50fc4d157b1" + "7dec5aad-e286-4610-88ba-2373c93675d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200846Z:5722a774-0d87-493f-8900-f50fc4d157b1" + "WESTCENTRALUS:20210217T031232Z:7dec5aad-e286-4610-88ba-2373c93675d9" ], "Date": [ - "Tue, 01 Sep 2020 20:08:45 GMT" + "Wed, 17 Feb 2021 03:12:31 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8802,20 +9358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"83350003-d8ef-42e5-9b40-81fda86c1e51\",\r\n \"startTime\": \"2021-02-17T03:00:03.6625735Z\",\r\n \"endTime\": \"2021-02-17T03:12:20.7624605Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgzNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxNzg2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8825,32 +9387,38 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "995288bd-9a39-46e5-a0e8-e6bf0c619098" + "1052dde7-3644-4459-b017-20ee431df8a9" ], "x-ms-correlation-request-id": [ - "995288bd-9a39-46e5-a0e8-e6bf0c619098" + "1052dde7-3644-4459-b017-20ee431df8a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200906Z:995288bd-9a39-46e5-a0e8-e6bf0c619098" + "WESTCENTRALUS:20210217T031233Z:1052dde7-3644-4459-b017-20ee431df8a9" ], "Date": [ - "Tue, 01 Sep 2020 20:09:05 GMT" + "Wed, 17 Feb 2021 03:12:32 GMT" ], "Content-Length": [ - "282" + "1030" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8859,20 +9427,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8351/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps1786\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps1786\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterId\": \"f66b5d6f-596c-4013-b898-a05c9ac15995\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps1786\",\r\n \"fqdn\": \"sfmcps-ps1786.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.54.43.39\",\r\n \"clusterCertificateThumbprints\": [\r\n \"FCE32458D57E3522FCE695C8DA2CD5ECE51B2A1F\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8882,29 +9453,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11697" ], "x-ms-request-id": [ - "155e48fa-f9c7-4e2a-b51f-a639aae670f4" + "3718c040-62ff-4a18-bd06-d7b15cbdf90d" ], "x-ms-correlation-request-id": [ - "155e48fa-f9c7-4e2a-b51f-a639aae670f4" + "3718c040-62ff-4a18-bd06-d7b15cbdf90d" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200926Z:155e48fa-f9c7-4e2a-b51f-a639aae670f4" + "WESTCENTRALUS:20210217T031253Z:3718c040-62ff-4a18-bd06-d7b15cbdf90d" ], "Date": [ - "Tue, 01 Sep 2020 20:09:25 GMT" + "Wed, 17 Feb 2021 03:12:53 GMT" ], "Content-Length": [ "282" @@ -8916,20 +9488,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8939,29 +9514,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11694" ], "x-ms-request-id": [ - "c80f45d6-9a9a-405c-9699-c5164cfd761b" + "27e83ec6-8354-468b-b6ad-b45db90a3ec9" ], "x-ms-correlation-request-id": [ - "c80f45d6-9a9a-405c-9699-c5164cfd761b" + "27e83ec6-8354-468b-b6ad-b45db90a3ec9" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T200946Z:c80f45d6-9a9a-405c-9699-c5164cfd761b" + "WESTCENTRALUS:20210217T031313Z:27e83ec6-8354-468b-b6ad-b45db90a3ec9" ], "Date": [ - "Tue, 01 Sep 2020 20:09:45 GMT" + "Wed, 17 Feb 2021 03:13:13 GMT" ], "Content-Length": [ "282" @@ -8973,20 +9549,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8996,29 +9575,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11693" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bbd4d99b-0c3b-4d36-abcf-fd0464db2630" + "6974f394-f2b0-4ea1-8194-b7c64b33dd7f" ], "x-ms-correlation-request-id": [ - "bbd4d99b-0c3b-4d36-abcf-fd0464db2630" + "6974f394-f2b0-4ea1-8194-b7c64b33dd7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201006Z:bbd4d99b-0c3b-4d36-abcf-fd0464db2630" + "WESTCENTRALUS:20210217T031333Z:6974f394-f2b0-4ea1-8194-b7c64b33dd7f" ], "Date": [ - "Tue, 01 Sep 2020 20:10:05 GMT" + "Wed, 17 Feb 2021 03:13:33 GMT" ], "Content-Length": [ "282" @@ -9030,20 +9610,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9053,29 +9636,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "11692" ], "x-ms-request-id": [ - "a3b4ab42-8872-4aaa-9462-21eccdb203e7" + "3a48e6d8-034e-46dd-8041-57292d2482b6" ], "x-ms-correlation-request-id": [ - "a3b4ab42-8872-4aaa-9462-21eccdb203e7" + "3a48e6d8-034e-46dd-8041-57292d2482b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201026Z:a3b4ab42-8872-4aaa-9462-21eccdb203e7" + "WESTCENTRALUS:20210217T031354Z:3a48e6d8-034e-46dd-8041-57292d2482b6" ], "Date": [ - "Tue, 01 Sep 2020 20:10:26 GMT" + "Wed, 17 Feb 2021 03:13:53 GMT" ], "Content-Length": [ "282" @@ -9087,20 +9671,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9110,29 +9697,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11691" ], "x-ms-request-id": [ - "b18b9a81-5a50-40e7-a59a-bde99364182b" + "6a1afb56-3a37-46e0-b2de-865520295aac" ], "x-ms-correlation-request-id": [ - "b18b9a81-5a50-40e7-a59a-bde99364182b" + "6a1afb56-3a37-46e0-b2de-865520295aac" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201046Z:b18b9a81-5a50-40e7-a59a-bde99364182b" + "WESTCENTRALUS:20210217T031414Z:6a1afb56-3a37-46e0-b2de-865520295aac" ], "Date": [ - "Tue, 01 Sep 2020 20:10:46 GMT" + "Wed, 17 Feb 2021 03:14:13 GMT" ], "Content-Length": [ "282" @@ -9144,20 +9732,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9167,29 +9758,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11690" ], "x-ms-request-id": [ - "3a884c90-4d56-47b4-9fe2-1751679eaeb6" + "15433af6-2277-48d3-8d3b-407f4d6cbdeb" ], "x-ms-correlation-request-id": [ - "3a884c90-4d56-47b4-9fe2-1751679eaeb6" + "15433af6-2277-48d3-8d3b-407f4d6cbdeb" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201106Z:3a884c90-4d56-47b4-9fe2-1751679eaeb6" + "WESTCENTRALUS:20210217T031434Z:15433af6-2277-48d3-8d3b-407f4d6cbdeb" ], "Date": [ - "Tue, 01 Sep 2020 20:11:06 GMT" + "Wed, 17 Feb 2021 03:14:33 GMT" ], "Content-Length": [ "282" @@ -9201,20 +9793,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9224,29 +9819,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11689" ], "x-ms-request-id": [ - "b7802ee7-046a-45e3-9405-5a952591bc4d" + "d9303e72-bae6-43c4-8e7c-76ed62d452c5" ], "x-ms-correlation-request-id": [ - "b7802ee7-046a-45e3-9405-5a952591bc4d" + "d9303e72-bae6-43c4-8e7c-76ed62d452c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201127Z:b7802ee7-046a-45e3-9405-5a952591bc4d" + "WESTCENTRALUS:20210217T031454Z:d9303e72-bae6-43c4-8e7c-76ed62d452c5" ], "Date": [ - "Tue, 01 Sep 2020 20:11:26 GMT" + "Wed, 17 Feb 2021 03:14:54 GMT" ], "Content-Length": [ "282" @@ -9258,20 +9854,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9281,1010 +9880,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" - ], - "x-ms-request-id": [ - "c78e0506-2ff4-4ad6-9dc1-c2508b662821" - ], - "x-ms-correlation-request-id": [ - "c78e0506-2ff4-4ad6-9dc1-c2508b662821" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201147Z:c78e0506-2ff4-4ad6-9dc1-c2508b662821" - ], - "Date": [ - "Tue, 01 Sep 2020 20:11:46 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" - ], - "x-ms-request-id": [ - "d68d9c90-58c5-48bb-a76f-2df9617b789b" - ], - "x-ms-correlation-request-id": [ - "d68d9c90-58c5-48bb-a76f-2df9617b789b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201207Z:d68d9c90-58c5-48bb-a76f-2df9617b789b" - ], - "Date": [ - "Tue, 01 Sep 2020 20:12:06 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" - ], - "x-ms-request-id": [ - "3bdfc7ef-9466-4bfb-bca0-3da3342e626f" - ], - "x-ms-correlation-request-id": [ - "3bdfc7ef-9466-4bfb-bca0-3da3342e626f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201227Z:3bdfc7ef-9466-4bfb-bca0-3da3342e626f" - ], - "Date": [ - "Tue, 01 Sep 2020 20:12:26 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" - ], - "x-ms-request-id": [ - "a5bc94a5-2157-4df1-a6f0-4f8c860e2d3e" - ], - "x-ms-correlation-request-id": [ - "a5bc94a5-2157-4df1-a6f0-4f8c860e2d3e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201247Z:a5bc94a5-2157-4df1-a6f0-4f8c860e2d3e" - ], - "Date": [ - "Tue, 01 Sep 2020 20:12:46 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" - ], - "x-ms-request-id": [ - "38dac305-c949-4404-b049-d2b86b8e054e" - ], - "x-ms-correlation-request-id": [ - "38dac305-c949-4404-b049-d2b86b8e054e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201307Z:38dac305-c949-4404-b049-d2b86b8e054e" - ], - "Date": [ - "Tue, 01 Sep 2020 20:13:06 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "1934411b-d3d2-4ac2-b119-ffd73c97e875" - ], - "x-ms-correlation-request-id": [ - "1934411b-d3d2-4ac2-b119-ffd73c97e875" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201327Z:1934411b-d3d2-4ac2-b119-ffd73c97e875" - ], - "Date": [ - "Tue, 01 Sep 2020 20:13:27 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/14bc0000-694a-4f9d-aa86-8f99607a198c?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0YmMwMDAwLTY5NGEtNGY5ZC1hYTg2LThmOTk2MDdhMTk4Yz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "03b430ee-0093-424d-9aa6-64666e389de6" - ], - "x-ms-correlation-request-id": [ - "03b430ee-0093-424d-9aa6-64666e389de6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201347Z:03b430ee-0093-424d-9aa6-64666e389de6" - ], - "Date": [ - "Tue, 01 Sep 2020 20:13:47 GMT" - ], - "Content-Length": [ - "294" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"14bc0000-694a-4f9d-aa86-8f99607a198c\",\r\n \"startTime\": \"2020-09-01T20:00:23.9154558Z\",\r\n \"endTime\": \"2020-09-01T20:13:44.4543399Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc2MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM0NTQwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81ceaba5-985f-4a4a-b5c6-ae2e9d7c2164" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "5af77c6b-adf8-405a-9c46-9b2da1097ded" - ], - "x-ms-correlation-request-id": [ - "5af77c6b-adf8-405a-9c46-9b2da1097ded" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201349Z:5af77c6b-adf8-405a-9c46-9b2da1097ded" - ], - "Date": [ - "Tue, 01 Sep 2020 20:13:48 GMT" - ], - "Content-Length": [ - "919" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps7607/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps4540\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps4540\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e26609a7-8133-4f7b-a0d8-999c73779bee\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps4540\",\r\n \"fqdn\": \"sfmcps-ps4540.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"C0A0B72A0875B692E9DA111EC15DE8A8D44D715F\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" - ], - "x-ms-request-id": [ - "2a0ed35b-2381-45f8-aae4-1403f6a10f79" - ], - "x-ms-correlation-request-id": [ - "2a0ed35b-2381-45f8-aae4-1403f6a10f79" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201409Z:2a0ed35b-2381-45f8-aae4-1403f6a10f79" - ], - "Date": [ - "Tue, 01 Sep 2020 20:14:08 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" - ], - "x-ms-request-id": [ - "a80b265b-0272-411c-97ff-c2373b7e42bb" - ], - "x-ms-correlation-request-id": [ - "a80b265b-0272-411c-97ff-c2373b7e42bb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201429Z:a80b265b-0272-411c-97ff-c2373b7e42bb" - ], - "Date": [ - "Tue, 01 Sep 2020 20:14:28 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" - ], - "x-ms-request-id": [ - "75212358-78b9-4edd-976e-26273219f483" - ], - "x-ms-correlation-request-id": [ - "75212358-78b9-4edd-976e-26273219f483" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201449Z:75212358-78b9-4edd-976e-26273219f483" - ], - "Date": [ - "Tue, 01 Sep 2020 20:14:48 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11707" - ], - "x-ms-request-id": [ - "87197718-c73e-486d-aa89-bef0bb0d4692" - ], - "x-ms-correlation-request-id": [ - "87197718-c73e-486d-aa89-bef0bb0d4692" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201509Z:87197718-c73e-486d-aa89-bef0bb0d4692" - ], - "Date": [ - "Tue, 01 Sep 2020 20:15:08 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" - ], - "x-ms-request-id": [ - "3255307a-c97e-4d77-bcc0-eaf7172976cc" - ], - "x-ms-correlation-request-id": [ - "3255307a-c97e-4d77-bcc0-eaf7172976cc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201529Z:3255307a-c97e-4d77-bcc0-eaf7172976cc" - ], - "Date": [ - "Tue, 01 Sep 2020 20:15:28 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11703" - ], - "x-ms-request-id": [ - "2ad97ffb-520c-4d77-9320-e81f2e7b3cb2" - ], - "x-ms-correlation-request-id": [ - "2ad97ffb-520c-4d77-9320-e81f2e7b3cb2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201549Z:2ad97ffb-520c-4d77-9320-e81f2e7b3cb2" - ], - "Date": [ - "Tue, 01 Sep 2020 20:15:48 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" - ], - "x-ms-request-id": [ - "0189b868-44d3-4805-ad0a-fb0a63fe786f" - ], - "x-ms-correlation-request-id": [ - "0189b868-44d3-4805-ad0a-fb0a63fe786f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201609Z:0189b868-44d3-4805-ad0a-fb0a63fe786f" - ], - "Date": [ - "Tue, 01 Sep 2020 20:16:08 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" - ], - "x-ms-request-id": [ - "92ea4e7d-c9e3-4e3b-b443-88af3a2de34c" - ], - "x-ms-correlation-request-id": [ - "92ea4e7d-c9e3-4e3b-b443-88af3a2de34c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201629Z:92ea4e7d-c9e3-4e3b-b443-88af3a2de34c" - ], - "Date": [ - "Tue, 01 Sep 2020 20:16:28 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11697" - ], - "x-ms-request-id": [ - "1feebc1d-e5cf-4e5f-ae86-fcd384dcc5d0" - ], - "x-ms-correlation-request-id": [ - "1feebc1d-e5cf-4e5f-ae86-fcd384dcc5d0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201649Z:1feebc1d-e5cf-4e5f-ae86-fcd384dcc5d0" - ], - "Date": [ - "Tue, 01 Sep 2020 20:16:48 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11696" + "11701" ], "x-ms-request-id": [ - "823bd8b5-f613-4482-8e83-4804ebdc422e" + "36948359-46ad-490d-bbbb-552ec86ce8b1" ], "x-ms-correlation-request-id": [ - "823bd8b5-f613-4482-8e83-4804ebdc422e" + "36948359-46ad-490d-bbbb-552ec86ce8b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201709Z:823bd8b5-f613-4482-8e83-4804ebdc422e" + "WESTCENTRALUS:20210217T031515Z:36948359-46ad-490d-bbbb-552ec86ce8b1" ], "Date": [ - "Tue, 01 Sep 2020 20:17:08 GMT" + "Wed, 17 Feb 2021 03:15:14 GMT" ], "Content-Length": [ "282" @@ -10296,20 +9915,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10319,86 +9941,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" - ], - "x-ms-request-id": [ - "a3a780ea-f01c-4ba1-ad8a-acc17a953c84" - ], - "x-ms-correlation-request-id": [ - "a3a780ea-f01c-4ba1-ad8a-acc17a953c84" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201730Z:a3a780ea-f01c-4ba1-ad8a-acc17a953c84" - ], - "Date": [ - "Tue, 01 Sep 2020 20:17:29 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" + "11699" ], "x-ms-request-id": [ - "c8b20067-8c40-4dd1-a7b4-2992071019f3" + "1ac4adc7-2b26-4a7e-ba78-75da07a9ac6e" ], "x-ms-correlation-request-id": [ - "c8b20067-8c40-4dd1-a7b4-2992071019f3" + "1ac4adc7-2b26-4a7e-ba78-75da07a9ac6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201750Z:c8b20067-8c40-4dd1-a7b4-2992071019f3" + "WESTCENTRALUS:20210217T031535Z:1ac4adc7-2b26-4a7e-ba78-75da07a9ac6e" ], "Date": [ - "Tue, 01 Sep 2020 20:17:49 GMT" + "Wed, 17 Feb 2021 03:15:34 GMT" ], "Content-Length": [ "282" @@ -10410,20 +9976,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10433,86 +10002,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11692" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "436f898c-eb3a-43dd-a94c-e56d17714b0d" - ], - "x-ms-correlation-request-id": [ - "436f898c-eb3a-43dd-a94c-e56d17714b0d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201810Z:436f898c-eb3a-43dd-a94c-e56d17714b0d" - ], - "Date": [ - "Tue, 01 Sep 2020 20:18:10 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11691" + "11698" ], "x-ms-request-id": [ - "dccee588-4d93-49cc-8374-8952dd30374b" + "cc05f2b7-b71f-4e8d-bf45-4bccae850e47" ], "x-ms-correlation-request-id": [ - "dccee588-4d93-49cc-8374-8952dd30374b" + "cc05f2b7-b71f-4e8d-bf45-4bccae850e47" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201830Z:dccee588-4d93-49cc-8374-8952dd30374b" + "WESTCENTRALUS:20210217T031555Z:cc05f2b7-b71f-4e8d-bf45-4bccae850e47" ], "Date": [ - "Tue, 01 Sep 2020 20:18:30 GMT" + "Wed, 17 Feb 2021 03:15:55 GMT" ], "Content-Length": [ "282" @@ -10524,20 +10037,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10547,86 +10063,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11690" - ], - "x-ms-request-id": [ - "340f8af1-cbb1-4bab-8e90-2d9f31e628b7" - ], - "x-ms-correlation-request-id": [ - "340f8af1-cbb1-4bab-8e90-2d9f31e628b7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201850Z:340f8af1-cbb1-4bab-8e90-2d9f31e628b7" - ], - "Date": [ - "Tue, 01 Sep 2020 20:18:50 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11689" + "11697" ], "x-ms-request-id": [ - "622fa5cc-9dff-474d-b62d-88472808e4cb" + "7e9b4f21-97ff-4dbf-ad36-59dc08ba0817" ], "x-ms-correlation-request-id": [ - "622fa5cc-9dff-474d-b62d-88472808e4cb" + "7e9b4f21-97ff-4dbf-ad36-59dc08ba0817" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201910Z:622fa5cc-9dff-474d-b62d-88472808e4cb" + "WESTCENTRALUS:20210217T031615Z:7e9b4f21-97ff-4dbf-ad36-59dc08ba0817" ], "Date": [ - "Tue, 01 Sep 2020 20:19:10 GMT" + "Wed, 17 Feb 2021 03:16:15 GMT" ], "Content-Length": [ "282" @@ -10638,20 +10098,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10661,86 +10124,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11685" - ], - "x-ms-request-id": [ - "23092bc9-cd87-43e3-be07-f65adcb0cbe3" - ], - "x-ms-correlation-request-id": [ - "23092bc9-cd87-43e3-be07-f65adcb0cbe3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200901T201930Z:23092bc9-cd87-43e3-be07-f65adcb0cbe3" - ], - "Date": [ - "Tue, 01 Sep 2020 20:19:29 GMT" - ], - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11683" + "11696" ], "x-ms-request-id": [ - "4777a7c7-4aa1-4108-8ad4-8732abbcb6b6" + "a1253399-5e33-4996-bc4f-d2a36b1d3b0f" ], "x-ms-correlation-request-id": [ - "4777a7c7-4aa1-4108-8ad4-8732abbcb6b6" + "a1253399-5e33-4996-bc4f-d2a36b1d3b0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201950Z:4777a7c7-4aa1-4108-8ad4-8732abbcb6b6" + "WESTCENTRALUS:20210217T031635Z:a1253399-5e33-4996-bc4f-d2a36b1d3b0f" ], "Date": [ - "Tue, 01 Sep 2020 20:19:49 GMT" + "Wed, 17 Feb 2021 03:16:35 GMT" ], "Content-Length": [ "294" @@ -10752,20 +10159,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b8100000-69d8-4d90-8838-025e0978c3a6\",\r\n \"startTime\": \"2020-09-01T20:13:48.9910569Z\",\r\n \"endTime\": \"2020-09-01T20:19:50.2676687Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"82990003-bea5-411e-9197-4d0fd0c28421\",\r\n \"startTime\": \"2021-02-17T03:12:33.1220069Z\",\r\n \"endTime\": \"2021-02-17T03:16:34.4691524Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/b8100000-69d8-4d90-8838-025e0978c3a6?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2I4MTAwMDAwLTY5ZDgtNGQ5MC04ODM4LTAyNWUwOTc4YzNhNj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/82990003-bea5-411e-9197-4d0fd0c28421?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzgyOTkwMDAzLWJlYTUtNDExZS05MTk3LTRkMGZkMGMyODQyMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9795d2-48ea-4b92-a240-b04a12018bd4" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10775,29 +10185,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11682" + "11695" ], "x-ms-request-id": [ - "ba05f5a6-4f65-4bcf-b827-aa40322513c0" + "948e3c73-26b8-4f1a-a5da-6484901b6458" ], "x-ms-correlation-request-id": [ - "ba05f5a6-4f65-4bcf-b827-aa40322513c0" + "948e3c73-26b8-4f1a-a5da-6484901b6458" ], "x-ms-routing-request-id": [ - "WESTUS:20200901T201951Z:ba05f5a6-4f65-4bcf-b827-aa40322513c0" + "WESTCENTRALUS:20210217T031635Z:948e3c73-26b8-4f1a-a5da-6484901b6458" ], "Date": [ - "Tue, 01 Sep 2020 20:19:50 GMT" + "Wed, 17 Feb 2021 03:16:35 GMT" ], "Expires": [ "-1" @@ -10809,8 +10220,8 @@ ], "Names": { "Test-CertAndExtension": [ - "ps7607", - "ps4540" + "ps8351", + "ps1786" ] }, "Variables": { diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCreateBasicCluster.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCreateBasicCluster.json index aa0d3b4cd130..80bdf2d7ce8b 100644 --- a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCreateBasicCluster.json +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestCreateBasicCluster.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "751ab52c-17b1-4d2b-a83e-d24e1135b802" + "d3ef9a18-17c5-495b-99b9-8747e259b513" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "gateway" ], "x-ms-request-id": [ - "74c25522-a133-4557-8b3d-d8541bfbb4b3" + "c4058550-e2c5-4f01-9480-607c23416045" ], "x-ms-correlation-request-id": [ - "74c25522-a133-4557-8b3d-d8541bfbb4b3" + "c4058550-e2c5-4f01-9480-607c23416045" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203656Z:74c25522-a133-4557-8b3d-d8541bfbb4b3" + "WESTUS:20210217T014426Z:c4058550-e2c5-4f01-9480-607c23416045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 20:36:55 GMT" + "Wed, 17 Feb 2021 01:44:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps6381' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8166' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f414908f-a93b-4f0b-bb7d-63f19c0fe888" + "3712cbf8-69cb-463d-9db7-1cd6208d0201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "gateway" ], "x-ms-request-id": [ - "2ca99284-53f9-4080-a1f1-250c6e093953" + "04cbf49d-29ec-4d4a-9d9b-2d1fd31c5f21" ], "x-ms-correlation-request-id": [ - "2ca99284-53f9-4080-a1f1-250c6e093953" + "04cbf49d-29ec-4d4a-9d9b-2d1fd31c5f21" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203656Z:2ca99284-53f9-4080-a1f1-250c6e093953" + "WESTUS:20210217T014426Z:04cbf49d-29ec-4d4a-9d9b-2d1fd31c5f21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 20:36:55 GMT" + "Wed, 17 Feb 2021 01:44:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,20 +117,23 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps6381' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8166' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -147,25 +150,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11985" ], "x-ms-request-id": [ - "4e1ce3e4-32a0-442d-bc3e-1f86fe3561de" + "11a4a0a0-25cb-400b-b482-efd323fc26af" ], "x-ms-correlation-request-id": [ - "4e1ce3e4-32a0-442d-bc3e-1f86fe3561de" + "11a4a0a0-25cb-400b-b482-efd323fc26af" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203940Z:4e1ce3e4-32a0-442d-bc3e-1f86fe3561de" + "WESTUS:20210217T014821Z:11a4a0a0-25cb-400b-b482-efd323fc26af" ], "Date": [ - "Mon, 31 Aug 2020 20:39:39 GMT" + "Wed, 17 Feb 2021 01:48:20 GMT" ], "Content-Length": [ - "957" + "1069" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,26 +178,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9684\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e831d563-dd21-4def-88ec-d44e3c26b82d\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9684\",\r\n \"fqdn\": \"sfmcps-ps9684.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"9DAE1D1ED7867661B2B1DA08561870AE6509A4BD\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps7638\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3e49531d-ffb4-4dc3-92c4-f7499909d08a\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps7638\",\r\n \"fqdn\": \"sfmcps-ps7638.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"13.74.30.132\",\r\n \"clusterCertificateThumbprints\": [\r\n \"2C82C974425C711B2B8D65A4E0AB55122F64B457\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79259f75-ca68-4c84-bb13-69da59002ace" + "e0b8103e-b2ee-4641-a487-9cae5b9c08ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -210,25 +214,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11958" ], "x-ms-request-id": [ - "d69d3358-26d0-43fc-a880-80c6f1eaaf36" + "03dc4b21-c397-4d1e-9f49-ad8f47817b2b" ], "x-ms-correlation-request-id": [ - "d69d3358-26d0-43fc-a880-80c6f1eaaf36" + "03dc4b21-c397-4d1e-9f49-ad8f47817b2b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204622Z:d69d3358-26d0-43fc-a880-80c6f1eaaf36" + "WESTUS:20210217T015629Z:03dc4b21-c397-4d1e-9f49-ad8f47817b2b" ], "Date": [ - "Mon, 31 Aug 2020 20:46:22 GMT" + "Wed, 17 Feb 2021 01:56:29 GMT" ], "Content-Length": [ - "994" + "1106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,26 +242,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9684\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e831d563-dd21-4def-88ec-d44e3c26b82d\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9684\",\r\n \"fqdn\": \"sfmcps-ps9684.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"9DAE1D1ED7867661B2B1DA08561870AE6509A4BD\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps7638\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3e49531d-ffb4-4dc3-92c4-f7499909d08a\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.432.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps7638\",\r\n \"fqdn\": \"sfmcps-ps7638.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"13.74.30.132\",\r\n \"clusterCertificateThumbprints\": [\r\n \"2C82C974425C711B2B8D65A4E0AB55122F64B457\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbabd99d-feea-44dd-8289-3bba4e9f13d4" + "39db62e3-59ce-4ba8-b02c-2a2da02a164b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -266,9 +271,6 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "3fbfb324-e47f-40f7-8878-a70f2781b028" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -276,19 +278,23 @@ "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11692" + "11862" + ], + "x-ms-request-id": [ + "e469ed6c-4187-4169-b980-535d3103feae" ], "x-ms-correlation-request-id": [ - "ebb9f2ee-1c3a-4533-8a3d-eec4b8bb13b6" + "e469ed6c-4187-4169-b980-535d3103feae" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211712Z:ebb9f2ee-1c3a-4533-8a3d-eec4b8bb13b6" + "WESTUS:20210217T022551Z:e469ed6c-4187-4169-b980-535d3103feae" ], "Date": [ - "Mon, 31 Aug 2020 21:17:12 GMT" + "Wed, 17 Feb 2021 02:25:50 GMT" ], "Expires": [ "-1" @@ -301,22 +307,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczYzODE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczgxNjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf9d8c5d-a387-4e91-8641-86e38ebb9eab" + "3712cbf8-69cb-463d-9db7-1cd6208d0201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -330,16 +336,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11999" ], "x-ms-request-id": [ - "4ab4900b-f271-4c91-941d-51f1646bcc8c" + "2e63a501-b9be-4b31-94dd-478a15cf2748" ], "x-ms-correlation-request-id": [ - "4ab4900b-f271-4c91-941d-51f1646bcc8c" + "2e63a501-b9be-4b31-94dd-478a15cf2748" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203656Z:4ab4900b-f271-4c91-941d-51f1646bcc8c" + "WESTUS:20210217T014427Z:2e63a501-b9be-4b31-94dd-478a15cf2748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -348,7 +354,7 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 20:36:55 GMT" + "Wed, 17 Feb 2021 01:44:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,32 +366,32 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps6381' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8166' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczYzODE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczgxNjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"northeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7ed02c34-b401-4527-a4bf-c6ba3339cceb" + "3712cbf8-69cb-463d-9db7-1cd6208d0201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "33" ] }, "ResponseHeaders": { @@ -399,13 +405,13 @@ "1199" ], "x-ms-request-id": [ - "6fc530fa-65e6-4b78-bc1f-d769a774f3b4" + "f6acfb21-2ad9-4d68-b9d3-c256844a7808" ], "x-ms-correlation-request-id": [ - "6fc530fa-65e6-4b78-bc1f-d769a774f3b4" + "f6acfb21-2ad9-4d68-b9d3-c256844a7808" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203657Z:6fc530fa-65e6-4b78-bc1f-d769a774f3b4" + "WESTUS:20210217T014430Z:f6acfb21-2ad9-4d68-b9d3-c256844a7808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -414,10 +420,10 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 20:36:56 GMT" + "Wed, 17 Feb 2021 01:44:30 GMT" ], "Content-Length": [ - "193" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,32 +432,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381\",\r\n \"name\": \"sfmcps-rg-ps6381\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166\",\r\n \"name\": \"sfmcps-rg-ps8166\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps9684\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"useTestExtension\": false,\r\n \"clusterUpgradeMode\": \"Automatic\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps7638\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"northeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "521072e3-37a4-4aa3-8b19-3f02dacbb05c" + "3712cbf8-69cb-463d-9db7-1cd6208d0201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "492" + "417" ] }, "ResponseHeaders": { @@ -465,31 +471,31 @@ "nosniff" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "978287a3-d3bc-4855-99b3-34177ec76768" + "3445866d-866a-432e-adf0-9e497b1190f1" ], "x-ms-correlation-request-id": [ - "978287a3-d3bc-4855-99b3-34177ec76768" + "3445866d-866a-432e-adf0-9e497b1190f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203659Z:978287a3-d3bc-4855-99b3-34177ec76768" + "WESTUS:20210217T014439Z:3445866d-866a-432e-adf0-9e497b1190f1" ], "Date": [ - "Mon, 31 Aug 2020 20:36:58 GMT" + "Wed, 17 Feb 2021 01:44:39 GMT" ], "Content-Length": [ - "771" + "893" ], "Content-Type": [ "application/json; charset=utf-8" @@ -498,20 +504,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9684\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e831d563-dd21-4def-88ec-d44e3c26b82d\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9684\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps7638\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"3e49531d-ffb4-4dc3-92c4-f7499909d08a\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps7638\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -521,29 +530,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11996" ], "x-ms-request-id": [ - "5aaf78c9-3172-4e81-86bb-8c8d202d1d88" + "f1484012-d219-4753-a108-2701ffe5f8d0" ], "x-ms-correlation-request-id": [ - "5aaf78c9-3172-4e81-86bb-8c8d202d1d88" + "f1484012-d219-4753-a108-2701ffe5f8d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203719Z:5aaf78c9-3172-4e81-86bb-8c8d202d1d88" + "WESTUS:20210217T014459Z:f1484012-d219-4753-a108-2701ffe5f8d0" ], "Date": [ - "Mon, 31 Aug 2020 20:37:18 GMT" + "Wed, 17 Feb 2021 01:44:59 GMT" ], "Content-Length": [ "282" @@ -555,20 +565,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -578,29 +591,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11995" ], "x-ms-request-id": [ - "310908b4-9042-4a85-9c29-2eff3fa86a0c" + "dc8e036f-df9f-4e91-8d04-00fd2bd07e3e" ], "x-ms-correlation-request-id": [ - "310908b4-9042-4a85-9c29-2eff3fa86a0c" + "dc8e036f-df9f-4e91-8d04-00fd2bd07e3e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203739Z:310908b4-9042-4a85-9c29-2eff3fa86a0c" + "WESTUS:20210217T014519Z:dc8e036f-df9f-4e91-8d04-00fd2bd07e3e" ], "Date": [ - "Mon, 31 Aug 2020 20:37:39 GMT" + "Wed, 17 Feb 2021 01:45:19 GMT" ], "Content-Length": [ "282" @@ -612,20 +626,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -635,29 +652,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11994" ], "x-ms-request-id": [ - "d9dfa87b-95a6-4516-a91a-61d7087f7723" + "be094dd3-7e2f-4581-b6b6-f2ad497dd3b3" ], "x-ms-correlation-request-id": [ - "d9dfa87b-95a6-4516-a91a-61d7087f7723" + "be094dd3-7e2f-4581-b6b6-f2ad497dd3b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203759Z:d9dfa87b-95a6-4516-a91a-61d7087f7723" + "WESTUS:20210217T014540Z:be094dd3-7e2f-4581-b6b6-f2ad497dd3b3" ], "Date": [ - "Mon, 31 Aug 2020 20:37:59 GMT" + "Wed, 17 Feb 2021 01:45:40 GMT" ], "Content-Length": [ "282" @@ -669,20 +687,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -692,29 +713,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11993" ], "x-ms-request-id": [ - "c2a03bdc-fdb0-441c-a90b-0bd5e812cec3" + "d1b6d2e9-2a85-47df-90ea-152e3844b5b2" ], "x-ms-correlation-request-id": [ - "c2a03bdc-fdb0-441c-a90b-0bd5e812cec3" + "d1b6d2e9-2a85-47df-90ea-152e3844b5b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203819Z:c2a03bdc-fdb0-441c-a90b-0bd5e812cec3" + "WESTUS:20210217T014600Z:d1b6d2e9-2a85-47df-90ea-152e3844b5b2" ], "Date": [ - "Mon, 31 Aug 2020 20:38:19 GMT" + "Wed, 17 Feb 2021 01:46:00 GMT" ], "Content-Length": [ "282" @@ -726,20 +748,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -749,29 +774,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11992" ], "x-ms-request-id": [ - "ed1fed17-66bf-44c5-9b39-8319bf7628aa" + "f33edd2d-8dc5-4292-b893-ca068e1ad4a5" ], "x-ms-correlation-request-id": [ - "ed1fed17-66bf-44c5-9b39-8319bf7628aa" + "f33edd2d-8dc5-4292-b893-ca068e1ad4a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203839Z:ed1fed17-66bf-44c5-9b39-8319bf7628aa" + "WESTUS:20210217T014620Z:f33edd2d-8dc5-4292-b893-ca068e1ad4a5" ], "Date": [ - "Mon, 31 Aug 2020 20:38:39 GMT" + "Wed, 17 Feb 2021 01:46:19 GMT" ], "Content-Length": [ "282" @@ -783,20 +809,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -806,29 +835,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11991" ], "x-ms-request-id": [ - "e5161cc3-48c6-4865-9fd8-57b8483d3a2d" + "3d185545-e145-4fef-a989-dd211cb33064" ], "x-ms-correlation-request-id": [ - "e5161cc3-48c6-4865-9fd8-57b8483d3a2d" + "3d185545-e145-4fef-a989-dd211cb33064" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203859Z:e5161cc3-48c6-4865-9fd8-57b8483d3a2d" + "WESTUS:20210217T014640Z:3d185545-e145-4fef-a989-dd211cb33064" ], "Date": [ - "Mon, 31 Aug 2020 20:38:59 GMT" + "Wed, 17 Feb 2021 01:46:39 GMT" ], "Content-Length": [ "282" @@ -840,20 +870,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -863,29 +896,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11990" ], "x-ms-request-id": [ - "cc2a2605-6050-46b6-bd64-6fe6e78090e5" + "2256464e-cc0d-4085-bd30-b25b073f32db" ], "x-ms-correlation-request-id": [ - "cc2a2605-6050-46b6-bd64-6fe6e78090e5" + "2256464e-cc0d-4085-bd30-b25b073f32db" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203919Z:cc2a2605-6050-46b6-bd64-6fe6e78090e5" + "WESTUS:20210217T014700Z:2256464e-cc0d-4085-bd30-b25b073f32db" ], "Date": [ - "Mon, 31 Aug 2020 20:39:19 GMT" + "Wed, 17 Feb 2021 01:46:59 GMT" ], "Content-Length": [ "282" @@ -897,20 +931,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5d5e0001-232e-409b-8b3e-5609eb667439?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVkNWUwMDAxLTIzMmUtNDA5Yi04YjNlLTU2MDllYjY2NzQzOT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -920,32 +957,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11989" ], "x-ms-request-id": [ - "8aab7b28-644d-41c6-96ed-70fb1b425569" + "0a257fef-9f11-461f-84f8-13830356fc67" ], "x-ms-correlation-request-id": [ - "8aab7b28-644d-41c6-96ed-70fb1b425569" + "0a257fef-9f11-461f-84f8-13830356fc67" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203939Z:8aab7b28-644d-41c6-96ed-70fb1b425569" + "WESTUS:20210217T014721Z:0a257fef-9f11-461f-84f8-13830356fc67" ], "Date": [ - "Mon, 31 Aug 2020 20:39:39 GMT" + "Wed, 17 Feb 2021 01:47:20 GMT" ], "Content-Length": [ - "294" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -954,26 +992,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d5e0001-232e-409b-8b3e-5609eb667439\",\r\n \"startTime\": \"2020-08-31T20:36:58.4900383Z\",\r\n \"endTime\": \"2020-08-31T20:39:29.0094039Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1246adcd-6899-48cf-bf1e-3ebd4061b280" - ], - "Accept-Language": [ - "en-US" + "3712cbf8-69cb-463d-9db7-1cd6208d0201" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -983,9 +1018,6 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ac10ac28-2796-4e8d-8f6f-b2ee8b56db8e" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -993,22 +1025,26 @@ "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11988" + ], + "x-ms-request-id": [ + "b7d92a8f-ed11-4afc-ae88-53e782217e01" ], "x-ms-correlation-request-id": [ - "021a186c-ddc5-407d-8a60-00e9784f2640" + "b7d92a8f-ed11-4afc-ae88-53e782217e01" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203940Z:021a186c-ddc5-407d-8a60-00e9784f2640" + "WESTUS:20210217T014741Z:b7d92a8f-ed11-4afc-ae88-53e782217e01" ], "Date": [ - "Mon, 31 Aug 2020 20:39:40 GMT" + "Wed, 17 Feb 2021 01:47:41 GMT" ], "Content-Length": [ - "139" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,20 +1053,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData e831d563-dd21-4def-88ec-d44e3c26b82d_pnt could not be found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3712cbf8-69cb-463d-9db7-1cd6208d0201" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1040,32 +1079,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11987" ], "x-ms-request-id": [ - "a6b442e2-69bf-4142-8772-8eecb56b0d46" + "906bab8a-97c3-44f0-b246-5d03401df8e2" ], "x-ms-correlation-request-id": [ - "a6b442e2-69bf-4142-8772-8eecb56b0d46" + "906bab8a-97c3-44f0-b246-5d03401df8e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204622Z:a6b442e2-69bf-4142-8772-8eecb56b0d46" + "WESTUS:20210217T014801Z:906bab8a-97c3-44f0-b246-5d03401df8e2" ], "Date": [ - "Mon, 31 Aug 2020 20:46:21 GMT" + "Wed, 17 Feb 2021 01:48:01 GMT" ], "Content-Length": [ - "694" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1074,26 +1114,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/516f0002-363b-4c62-9f9d-afcc2f926d54?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzUxNmYwMDAyLTM2M2ItNGM2Mi05ZjlkLWFmY2MyZjkyNmQ1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8404f6b-6dfb-4e3b-b6c2-73719234a865" - ], - "Accept-Language": [ - "en-US" + "3712cbf8-69cb-463d-9db7-1cd6208d0201" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1103,32 +1140,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11986" ], "x-ms-request-id": [ - "a725c7f2-6081-4d2d-bf59-78b9dabffa0c" + "ed7a023e-bf6d-4149-8dd4-74f948fab23f" ], "x-ms-correlation-request-id": [ - "a725c7f2-6081-4d2d-bf59-78b9dabffa0c" + "ed7a023e-bf6d-4149-8dd4-74f948fab23f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204623Z:a725c7f2-6081-4d2d-bf59-78b9dabffa0c" + "WESTUS:20210217T014821Z:ed7a023e-bf6d-4149-8dd4-74f948fab23f" ], "Date": [ - "Mon, 31 Aug 2020 20:46:22 GMT" + "Wed, 17 Feb 2021 01:48:20 GMT" ], "Content-Length": [ - "694" + "293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,20 +1175,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"516f0002-363b-4c62-9f9d-afcc2f926d54\",\r\n \"startTime\": \"2021-02-17T01:44:38.3764526Z\",\r\n \"endTime\": \"2021-02-17T01:48:05.256524Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1160,32 +1204,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11984" ], "x-ms-request-id": [ - "b5a372cb-d30c-48f1-8788-ea65cc6ca3f6" + "5fee19b4-2a74-4ad9-92d4-99864599ebfd" ], "x-ms-correlation-request-id": [ - "b5a372cb-d30c-48f1-8788-ea65cc6ca3f6" + "5fee19b4-2a74-4ad9-92d4-99864599ebfd" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211109Z:b5a372cb-d30c-48f1-8788-ea65cc6ca3f6" + "WESTUS:20210217T014822Z:5fee19b4-2a74-4ad9-92d4-99864599ebfd" ], "Date": [ - "Mon, 31 Aug 2020 21:11:09 GMT" + "Wed, 17 Feb 2021 01:48:21 GMT" ], "Content-Length": [ - "694" + "139" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1194,32 +1239,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData 3e49531d-ffb4-4dc3-92c4-f7499909d08a_pnt could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c4bbb52-e1dd-4861-a55b-bd5deaf1ffdb" - ], - "Accept-Language": [ - "en-US" + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "296" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1229,35 +1265,33 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" ], "x-ms-request-id": [ - "2b6fe361-2b38-4e08-86e6-1c4b92dcfb25" + "0a0f48bf-9c7c-47a3-8c02-61a6d9e73147" ], "x-ms-correlation-request-id": [ - "2b6fe361-2b38-4e08-86e6-1c4b92dcfb25" + "0a0f48bf-9c7c-47a3-8c02-61a6d9e73147" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T203940Z:2b6fe361-2b38-4e08-86e6-1c4b92dcfb25" + "WESTUS:20210217T015628Z:0a0f48bf-9c7c-47a3-8c02-61a6d9e73147" ], "Date": [ - "Mon, 31 Aug 2020 20:39:40 GMT" + "Wed, 17 Feb 2021 01:56:28 GMT" ], "Content-Length": [ - "693" + "694" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,32 +1300,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n },\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5109f441-12db-4089-a0e9-c6c0d80dce6a" + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "366" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1301,38 +1329,33 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" ], "x-ms-request-id": [ - "d602cc24-4010-42bf-9dd3-146e521b8296" + "c39cd552-fb14-44c7-91b3-aea7429c73a2" ], "x-ms-correlation-request-id": [ - "d602cc24-4010-42bf-9dd3-146e521b8296" + "c39cd552-fb14-44c7-91b3-aea7429c73a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204623Z:d602cc24-4010-42bf-9dd3-146e521b8296" + "WESTUS:20210217T015629Z:c39cd552-fb14-44c7-91b3-aea7429c73a2" ], "Date": [ - "Mon, 31 Aug 2020 20:46:22 GMT" + "Wed, 17 Feb 2021 01:56:29 GMT" ], "Content-Length": [ - "693" + "694" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1341,20 +1364,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1364,32 +1390,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11885" ], "x-ms-request-id": [ - "58766372-e8ba-4c00-8836-8e7e326f66c7" + "070a016d-1cc0-422c-b79a-2df29e07d2a3" ], "x-ms-correlation-request-id": [ - "58766372-e8ba-4c00-8836-8e7e326f66c7" + "070a016d-1cc0-422c-b79a-2df29e07d2a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204000Z:58766372-e8ba-4c00-8836-8e7e326f66c7" + "WESTUS:20210217T021946Z:070a016d-1cc0-422c-b79a-2df29e07d2a3" ], "Date": [ - "Mon, 31 Aug 2020 20:40:00 GMT" + "Wed, 17 Feb 2021 02:19:45 GMT" ], "Content-Length": [ - "282" + "694" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,20 +1425,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "299" ] }, "ResponseHeaders": { @@ -1421,32 +1460,36 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "8140598a-53b7-4af3-892f-b262abf5673b" + "f2f2b3bb-a299-4296-84bf-959697060901" ], "x-ms-correlation-request-id": [ - "8140598a-53b7-4af3-892f-b262abf5673b" + "f2f2b3bb-a299-4296-84bf-959697060901" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204020Z:8140598a-53b7-4af3-892f-b262abf5673b" + "WESTUS:20210217T014822Z:f2f2b3bb-a299-4296-84bf-959697060901" ], "Date": [ - "Mon, 31 Aug 2020 20:40:20 GMT" + "Wed, 17 Feb 2021 01:48:22 GMT" ], "Content-Length": [ - "282" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1455,20 +1498,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {},\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n },\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "369" ] }, "ResponseHeaders": { @@ -1478,32 +1533,39 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "a6999cd7-7aa0-40c1-9c4f-45b884ba0dd2" + "8f819cc8-15a4-468d-a751-89c73df7f1c4" ], "x-ms-correlation-request-id": [ - "a6999cd7-7aa0-40c1-9c4f-45b884ba0dd2" + "8f819cc8-15a4-468d-a751-89c73df7f1c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204040Z:a6999cd7-7aa0-40c1-9c4f-45b884ba0dd2" + "WESTUS:20210217T015629Z:8f819cc8-15a4-468d-a751-89c73df7f1c4" ], "Date": [ - "Mon, 31 Aug 2020 20:40:40 GMT" + "Wed, 17 Feb 2021 01:56:29 GMT" ], "Content-Length": [ - "282" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1512,20 +1574,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1535,29 +1600,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9ccd671a-3e9c-4f09-8ed3-3e9f1502fa14" + "5a1b42a5-90f0-450a-88d9-577579ac0fc9" ], "x-ms-correlation-request-id": [ - "9ccd671a-3e9c-4f09-8ed3-3e9f1502fa14" + "5a1b42a5-90f0-450a-88d9-577579ac0fc9" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204100Z:9ccd671a-3e9c-4f09-8ed3-3e9f1502fa14" + "WESTUS:20210217T014843Z:5a1b42a5-90f0-450a-88d9-577579ac0fc9" ], "Date": [ - "Mon, 31 Aug 2020 20:41:00 GMT" + "Wed, 17 Feb 2021 01:48:42 GMT" ], "Content-Length": [ "282" @@ -1569,20 +1635,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1592,29 +1661,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11982" ], "x-ms-request-id": [ - "ca3f0fe8-69b3-4852-b3b8-d4347d088d38" + "dd20044d-69c9-4fa9-a477-90dc37dee34f" ], "x-ms-correlation-request-id": [ - "ca3f0fe8-69b3-4852-b3b8-d4347d088d38" + "dd20044d-69c9-4fa9-a477-90dc37dee34f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204121Z:ca3f0fe8-69b3-4852-b3b8-d4347d088d38" + "WESTUS:20210217T014903Z:dd20044d-69c9-4fa9-a477-90dc37dee34f" ], "Date": [ - "Mon, 31 Aug 2020 20:41:20 GMT" + "Wed, 17 Feb 2021 01:49:03 GMT" ], "Content-Length": [ "282" @@ -1626,20 +1696,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1649,29 +1722,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11981" ], "x-ms-request-id": [ - "a1a21815-5bea-48fd-881d-df9582fd91a0" + "f0324606-1fc6-4d08-b1f4-8b963ce609ab" ], "x-ms-correlation-request-id": [ - "a1a21815-5bea-48fd-881d-df9582fd91a0" + "f0324606-1fc6-4d08-b1f4-8b963ce609ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204141Z:a1a21815-5bea-48fd-881d-df9582fd91a0" + "WESTUS:20210217T014924Z:f0324606-1fc6-4d08-b1f4-8b963ce609ab" ], "Date": [ - "Mon, 31 Aug 2020 20:41:40 GMT" + "Wed, 17 Feb 2021 01:49:23 GMT" ], "Content-Length": [ "282" @@ -1683,20 +1757,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1706,29 +1783,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11980" ], "x-ms-request-id": [ - "4223748c-4868-46cb-9925-bf67edc1d7c4" + "088c174c-0fa3-4f44-9a3b-3dfc9b32cccd" ], "x-ms-correlation-request-id": [ - "4223748c-4868-46cb-9925-bf67edc1d7c4" + "088c174c-0fa3-4f44-9a3b-3dfc9b32cccd" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204201Z:4223748c-4868-46cb-9925-bf67edc1d7c4" + "WESTUS:20210217T014944Z:088c174c-0fa3-4f44-9a3b-3dfc9b32cccd" ], "Date": [ - "Mon, 31 Aug 2020 20:42:00 GMT" + "Wed, 17 Feb 2021 01:49:43 GMT" ], "Content-Length": [ "282" @@ -1740,20 +1818,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1763,29 +1844,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11980" ], "x-ms-request-id": [ - "cc2d5864-cf50-41b2-b85b-3aa7b4f6d4f9" + "29de38d1-81a2-42fe-8e82-3751543f31a8" ], "x-ms-correlation-request-id": [ - "cc2d5864-cf50-41b2-b85b-3aa7b4f6d4f9" + "29de38d1-81a2-42fe-8e82-3751543f31a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204221Z:cc2d5864-cf50-41b2-b85b-3aa7b4f6d4f9" + "WESTUS:20210217T015004Z:29de38d1-81a2-42fe-8e82-3751543f31a8" ], "Date": [ - "Mon, 31 Aug 2020 20:42:20 GMT" + "Wed, 17 Feb 2021 01:50:03 GMT" ], "Content-Length": [ "282" @@ -1797,20 +1879,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1820,29 +1905,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11979" ], "x-ms-request-id": [ - "fc52879a-99ca-4240-9275-a0460593b271" + "be4839aa-a3e7-45b7-83ff-37f05d318214" ], "x-ms-correlation-request-id": [ - "fc52879a-99ca-4240-9275-a0460593b271" + "be4839aa-a3e7-45b7-83ff-37f05d318214" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204241Z:fc52879a-99ca-4240-9275-a0460593b271" + "WESTUS:20210217T015024Z:be4839aa-a3e7-45b7-83ff-37f05d318214" ], "Date": [ - "Mon, 31 Aug 2020 20:42:40 GMT" + "Wed, 17 Feb 2021 01:50:23 GMT" ], "Content-Length": [ "282" @@ -1854,20 +1940,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1877,29 +1966,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11978" ], "x-ms-request-id": [ - "17dc51b9-5184-4d5a-94c7-d11b1a6fef3d" + "f3b0cb5b-c1df-4a75-95d1-08d38499539b" ], "x-ms-correlation-request-id": [ - "17dc51b9-5184-4d5a-94c7-d11b1a6fef3d" + "f3b0cb5b-c1df-4a75-95d1-08d38499539b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204301Z:17dc51b9-5184-4d5a-94c7-d11b1a6fef3d" + "WESTUS:20210217T015044Z:f3b0cb5b-c1df-4a75-95d1-08d38499539b" ], "Date": [ - "Mon, 31 Aug 2020 20:43:00 GMT" + "Wed, 17 Feb 2021 01:50:44 GMT" ], "Content-Length": [ "282" @@ -1911,20 +2001,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1934,29 +2027,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11977" ], "x-ms-request-id": [ - "438086ae-9bd5-4bc5-9be8-d550ef2f8b54" + "c3e38004-fad3-4b15-8287-bf92d03914af" ], "x-ms-correlation-request-id": [ - "438086ae-9bd5-4bc5-9be8-d550ef2f8b54" + "c3e38004-fad3-4b15-8287-bf92d03914af" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204321Z:438086ae-9bd5-4bc5-9be8-d550ef2f8b54" + "WESTUS:20210217T015105Z:c3e38004-fad3-4b15-8287-bf92d03914af" ], "Date": [ - "Mon, 31 Aug 2020 20:43:21 GMT" + "Wed, 17 Feb 2021 01:51:05 GMT" ], "Content-Length": [ "282" @@ -1968,20 +2062,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1991,29 +2088,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11976" ], "x-ms-request-id": [ - "2f175ad5-c303-4ac1-a0d9-056e4cae2524" + "4b944f14-008b-40ca-92c2-f9a937deeff7" ], "x-ms-correlation-request-id": [ - "2f175ad5-c303-4ac1-a0d9-056e4cae2524" + "4b944f14-008b-40ca-92c2-f9a937deeff7" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204341Z:2f175ad5-c303-4ac1-a0d9-056e4cae2524" + "WESTUS:20210217T015125Z:4b944f14-008b-40ca-92c2-f9a937deeff7" ], "Date": [ - "Mon, 31 Aug 2020 20:43:41 GMT" + "Wed, 17 Feb 2021 01:51:25 GMT" ], "Content-Length": [ "282" @@ -2025,20 +2123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2048,29 +2149,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11975" ], "x-ms-request-id": [ - "303ce870-24f1-4213-928a-497285db11e8" + "5681efb0-4070-4280-9622-4f8b1858420a" ], "x-ms-correlation-request-id": [ - "303ce870-24f1-4213-928a-497285db11e8" + "5681efb0-4070-4280-9622-4f8b1858420a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204401Z:303ce870-24f1-4213-928a-497285db11e8" + "WESTUS:20210217T015145Z:5681efb0-4070-4280-9622-4f8b1858420a" ], "Date": [ - "Mon, 31 Aug 2020 20:44:01 GMT" + "Wed, 17 Feb 2021 01:51:44 GMT" ], "Content-Length": [ "282" @@ -2082,20 +2184,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2105,29 +2210,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11973" ], "x-ms-request-id": [ - "6d1490c3-f743-4cc4-96f9-47f16c7b156c" + "68352afa-6cfa-4e55-b466-c91b871ff36d" ], "x-ms-correlation-request-id": [ - "6d1490c3-f743-4cc4-96f9-47f16c7b156c" + "68352afa-6cfa-4e55-b466-c91b871ff36d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204421Z:6d1490c3-f743-4cc4-96f9-47f16c7b156c" + "WESTUS:20210217T015205Z:68352afa-6cfa-4e55-b466-c91b871ff36d" ], "Date": [ - "Mon, 31 Aug 2020 20:44:21 GMT" + "Wed, 17 Feb 2021 01:52:05 GMT" ], "Content-Length": [ "282" @@ -2139,20 +2245,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2162,29 +2271,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11972" ], "x-ms-request-id": [ - "423cdd22-532f-4a16-a007-f2417b2ee699" + "44e7a68e-885e-4296-938f-e62533cebf87" ], "x-ms-correlation-request-id": [ - "423cdd22-532f-4a16-a007-f2417b2ee699" + "44e7a68e-885e-4296-938f-e62533cebf87" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204442Z:423cdd22-532f-4a16-a007-f2417b2ee699" + "WESTUS:20210217T015225Z:44e7a68e-885e-4296-938f-e62533cebf87" ], "Date": [ - "Mon, 31 Aug 2020 20:44:41 GMT" + "Wed, 17 Feb 2021 01:52:24 GMT" ], "Content-Length": [ "282" @@ -2196,20 +2306,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2219,29 +2332,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11971" ], "x-ms-request-id": [ - "255f8518-0dd3-4014-b806-1ee8fddb05d6" + "157bbf34-97f2-42c8-92a2-80d805a2b070" ], "x-ms-correlation-request-id": [ - "255f8518-0dd3-4014-b806-1ee8fddb05d6" + "157bbf34-97f2-42c8-92a2-80d805a2b070" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204502Z:255f8518-0dd3-4014-b806-1ee8fddb05d6" + "WESTUS:20210217T015245Z:157bbf34-97f2-42c8-92a2-80d805a2b070" ], "Date": [ - "Mon, 31 Aug 2020 20:45:01 GMT" + "Wed, 17 Feb 2021 01:52:45 GMT" ], "Content-Length": [ "282" @@ -2253,20 +2367,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2276,29 +2393,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11970" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "10063ae7-c570-412f-87b1-9ea080f8b0a9" + "a57d54fa-0d91-46df-a72f-a45a1efdabf0" ], "x-ms-correlation-request-id": [ - "10063ae7-c570-412f-87b1-9ea080f8b0a9" + "a57d54fa-0d91-46df-a72f-a45a1efdabf0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204522Z:10063ae7-c570-412f-87b1-9ea080f8b0a9" + "WESTUS:20210217T015306Z:a57d54fa-0d91-46df-a72f-a45a1efdabf0" ], "Date": [ - "Mon, 31 Aug 2020 20:45:22 GMT" + "Wed, 17 Feb 2021 01:53:05 GMT" ], "Content-Length": [ "282" @@ -2310,20 +2428,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2333,29 +2454,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11969" ], "x-ms-request-id": [ - "21559ad7-63f9-4638-b003-32ad6710fca5" + "b855395f-2be4-41b8-a523-0861dddda35e" ], "x-ms-correlation-request-id": [ - "21559ad7-63f9-4638-b003-32ad6710fca5" + "b855395f-2be4-41b8-a523-0861dddda35e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204542Z:21559ad7-63f9-4638-b003-32ad6710fca5" + "WESTUS:20210217T015326Z:b855395f-2be4-41b8-a523-0861dddda35e" ], "Date": [ - "Mon, 31 Aug 2020 20:45:41 GMT" + "Wed, 17 Feb 2021 01:53:26 GMT" ], "Content-Length": [ "282" @@ -2367,20 +2489,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2390,29 +2515,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11968" ], "x-ms-request-id": [ - "bc400f44-a322-441d-802e-e40d04a68bc1" + "8f61b8e8-984a-4f4f-b106-9ba1aa0d2dca" ], "x-ms-correlation-request-id": [ - "bc400f44-a322-441d-802e-e40d04a68bc1" + "8f61b8e8-984a-4f4f-b106-9ba1aa0d2dca" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204602Z:bc400f44-a322-441d-802e-e40d04a68bc1" + "WESTUS:20210217T015347Z:8f61b8e8-984a-4f4f-b106-9ba1aa0d2dca" ], "Date": [ - "Mon, 31 Aug 2020 20:46:01 GMT" + "Wed, 17 Feb 2021 01:53:46 GMT" ], "Content-Length": [ "282" @@ -2424,20 +2550,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80550001-016a-430c-948d-5ac40dcfbdce?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwNTUwMDAxLTAxNmEtNDMwYy05NDhkLTVhYzQwZGNmYmRjZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2447,32 +2576,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" ], "x-ms-request-id": [ - "51672bae-435f-4b79-b91d-10e1751a864f" + "04a59736-3073-4110-809e-828189197332" ], "x-ms-correlation-request-id": [ - "51672bae-435f-4b79-b91d-10e1751a864f" + "04a59736-3073-4110-809e-828189197332" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204622Z:51672bae-435f-4b79-b91d-10e1751a864f" + "WESTUS:20210217T015407Z:04a59736-3073-4110-809e-828189197332" ], "Date": [ - "Mon, 31 Aug 2020 20:46:21 GMT" + "Wed, 17 Feb 2021 01:54:06 GMT" ], "Content-Length": [ - "294" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2481,26 +2611,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80550001-016a-430c-948d-5ac40dcfbdce\",\r\n \"startTime\": \"2020-08-31T20:39:40.4052464Z\",\r\n \"endTime\": \"2020-08-31T20:46:12.0778932Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7898ae68-7738-45c6-a04a-b7d20834c7de" - ], - "Accept-Language": [ - "en-US" + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2510,9 +2637,6 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "86850f12-a700-434e-b691-042275952a78" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2520,22 +2644,26 @@ "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "891f274a-3d82-467e-94bc-1c5359eff7e9" ], "x-ms-correlation-request-id": [ - "40afe881-5d17-49f4-91cf-014a64cd8b81" + "891f274a-3d82-467e-94bc-1c5359eff7e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204622Z:40afe881-5d17-49f4-91cf-014a64cd8b81" + "WESTUS:20210217T015427Z:891f274a-3d82-467e-94bc-1c5359eff7e9" ], "Date": [ - "Mon, 31 Aug 2020 20:46:22 GMT" + "Wed, 17 Feb 2021 01:54:26 GMT" ], "Content-Length": [ - "106" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2544,20 +2672,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"message\": \"Cluster must have at least one active primary node type.\"\r\n }\r\n}", - "StatusCode": 400 + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2567,29 +2698,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11965" ], "x-ms-request-id": [ - "d2772fcc-a873-467b-938a-223b444125a6" + "f6407dc1-17d5-406f-90d3-7bb64ea1705a" ], "x-ms-correlation-request-id": [ - "d2772fcc-a873-467b-938a-223b444125a6" + "f6407dc1-17d5-406f-90d3-7bb64ea1705a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204643Z:d2772fcc-a873-467b-938a-223b444125a6" + "WESTUS:20210217T015447Z:f6407dc1-17d5-406f-90d3-7bb64ea1705a" ], "Date": [ - "Mon, 31 Aug 2020 20:46:42 GMT" + "Wed, 17 Feb 2021 01:54:47 GMT" ], "Content-Length": [ "282" @@ -2601,20 +2733,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2624,29 +2759,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11964" ], "x-ms-request-id": [ - "13a099e6-ffec-468d-a049-4eb47eefa237" + "a8d6653c-58e6-48d3-956c-a1fe8190683e" ], "x-ms-correlation-request-id": [ - "13a099e6-ffec-468d-a049-4eb47eefa237" + "a8d6653c-58e6-48d3-956c-a1fe8190683e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204703Z:13a099e6-ffec-468d-a049-4eb47eefa237" + "WESTUS:20210217T015507Z:a8d6653c-58e6-48d3-956c-a1fe8190683e" ], "Date": [ - "Mon, 31 Aug 2020 20:47:02 GMT" + "Wed, 17 Feb 2021 01:55:07 GMT" ], "Content-Length": [ "282" @@ -2658,20 +2794,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2681,29 +2820,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11963" ], "x-ms-request-id": [ - "c2bdb2d6-05a1-4614-ad9b-dd5efea23071" + "71ac18bd-f6c0-4015-a653-90f6411ee907" ], "x-ms-correlation-request-id": [ - "c2bdb2d6-05a1-4614-ad9b-dd5efea23071" + "71ac18bd-f6c0-4015-a653-90f6411ee907" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204723Z:c2bdb2d6-05a1-4614-ad9b-dd5efea23071" + "WESTUS:20210217T015528Z:71ac18bd-f6c0-4015-a653-90f6411ee907" ], "Date": [ - "Mon, 31 Aug 2020 20:47:23 GMT" + "Wed, 17 Feb 2021 01:55:27 GMT" ], "Content-Length": [ "282" @@ -2715,20 +2855,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2738,29 +2881,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11962" ], "x-ms-request-id": [ - "62966c69-ec82-4a2e-a423-bd34be8ed464" + "b41126e9-cbe5-4d83-8a00-b075555f9376" ], "x-ms-correlation-request-id": [ - "62966c69-ec82-4a2e-a423-bd34be8ed464" + "b41126e9-cbe5-4d83-8a00-b075555f9376" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204743Z:62966c69-ec82-4a2e-a423-bd34be8ed464" + "WESTUS:20210217T015548Z:b41126e9-cbe5-4d83-8a00-b075555f9376" ], "Date": [ - "Mon, 31 Aug 2020 20:47:43 GMT" + "Wed, 17 Feb 2021 01:55:47 GMT" ], "Content-Length": [ "282" @@ -2772,20 +2916,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2795,29 +2942,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11961" ], "x-ms-request-id": [ - "dc3f3d53-ffad-4947-93a4-2aab7f66b385" + "084db7ea-6f39-4c5c-a7ce-1ca7eb1a432d" ], "x-ms-correlation-request-id": [ - "dc3f3d53-ffad-4947-93a4-2aab7f66b385" + "084db7ea-6f39-4c5c-a7ce-1ca7eb1a432d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204803Z:dc3f3d53-ffad-4947-93a4-2aab7f66b385" + "WESTUS:20210217T015608Z:084db7ea-6f39-4c5c-a7ce-1ca7eb1a432d" ], "Date": [ - "Mon, 31 Aug 2020 20:48:03 GMT" + "Wed, 17 Feb 2021 01:56:07 GMT" ], "Content-Length": [ "282" @@ -2829,20 +2977,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/d9950002-4fc0-4d94-bf4f-c044afd5b73b?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q5OTUwMDAyLTRmYzAtNGQ5NC1iZjRmLWMwNDRhZmQ1YjczYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c23926e7-c75f-4e7d-986b-e4d505cd6a6e" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2852,32 +3003,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11960" ], "x-ms-request-id": [ - "0027937e-1830-4171-8c39-1330939d0446" + "2870388c-0f73-456a-9f4d-651aa6fa96d1" ], "x-ms-correlation-request-id": [ - "0027937e-1830-4171-8c39-1330939d0446" + "2870388c-0f73-456a-9f4d-651aa6fa96d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204823Z:0027937e-1830-4171-8c39-1330939d0446" + "WESTUS:20210217T015628Z:2870388c-0f73-456a-9f4d-651aa6fa96d1" ], "Date": [ - "Mon, 31 Aug 2020 20:48:23 GMT" + "Wed, 17 Feb 2021 01:56:28 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2886,20 +3038,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"d9950002-4fc0-4d94-bf4f-c044afd5b73b\",\r\n \"startTime\": \"2021-02-17T01:48:22.7312975Z\",\r\n \"endTime\": \"2021-02-17T01:56:24.4346317Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1c308560-6617-4c10-8e7b-38c97973b953" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2909,29 +3067,91 @@ "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ce683cc4-51b0-49b8-87c3-d0cfe1c1e09c" + ], + "x-ms-correlation-request-id": [ + "ce683cc4-51b0-49b8-87c3-d0cfe1c1e09c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T015629Z:ce683cc4-51b0-49b8-87c3-d0cfe1c1e09c" + ], + "Date": [ + "Wed, 17 Feb 2021 01:56:28 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"message\": \"Cluster must have at least one active primary node type.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11956" ], "x-ms-request-id": [ - "eb08bdc1-37bb-42e6-94bb-6e2cf55b7a6b" + "04b71ad3-6400-461b-aa72-1f64cbfbbad3" ], "x-ms-correlation-request-id": [ - "eb08bdc1-37bb-42e6-94bb-6e2cf55b7a6b" + "04b71ad3-6400-461b-aa72-1f64cbfbbad3" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204843Z:eb08bdc1-37bb-42e6-94bb-6e2cf55b7a6b" + "WESTUS:20210217T015650Z:04b71ad3-6400-461b-aa72-1f64cbfbbad3" ], "Date": [ - "Mon, 31 Aug 2020 20:48:43 GMT" + "Wed, 17 Feb 2021 01:56:49 GMT" ], "Content-Length": [ "282" @@ -2943,20 +3163,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2966,29 +3189,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11955" ], "x-ms-request-id": [ - "5f6c5cd2-d188-4493-9f79-a36c51943f81" + "1d1ed012-771b-48bf-b5fb-4d391a81cb35" ], "x-ms-correlation-request-id": [ - "5f6c5cd2-d188-4493-9f79-a36c51943f81" + "1d1ed012-771b-48bf-b5fb-4d391a81cb35" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204904Z:5f6c5cd2-d188-4493-9f79-a36c51943f81" + "WESTUS:20210217T015710Z:1d1ed012-771b-48bf-b5fb-4d391a81cb35" ], "Date": [ - "Mon, 31 Aug 2020 20:49:03 GMT" + "Wed, 17 Feb 2021 01:57:09 GMT" ], "Content-Length": [ "282" @@ -3000,20 +3224,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3023,29 +3250,91 @@ "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5dceeb45-b6a8-4bdc-883a-ca7dc6becd6b" + ], + "x-ms-correlation-request-id": [ + "5dceeb45-b6a8-4bdc-883a-ca7dc6becd6b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T015730Z:5dceeb45-b6a8-4bdc-883a-ca7dc6becd6b" + ], + "Date": [ + "Wed, 17 Feb 2021 01:57:29 GMT" + ], + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11953" ], "x-ms-request-id": [ - "5e2dc107-3000-491f-b2de-1258e496f4be" + "54865036-2a23-4a23-ab26-fd392a404631" ], "x-ms-correlation-request-id": [ - "5e2dc107-3000-491f-b2de-1258e496f4be" + "54865036-2a23-4a23-ab26-fd392a404631" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204924Z:5e2dc107-3000-491f-b2de-1258e496f4be" + "WESTUS:20210217T015751Z:54865036-2a23-4a23-ab26-fd392a404631" ], "Date": [ - "Mon, 31 Aug 2020 20:49:23 GMT" + "Wed, 17 Feb 2021 01:57:50 GMT" ], "Content-Length": [ "282" @@ -3057,20 +3346,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3080,29 +3372,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11952" ], "x-ms-request-id": [ - "a09820a8-0a5a-4f67-9e5d-0d876b999acc" + "779a3881-3442-44f4-bb25-d303a64c0678" ], "x-ms-correlation-request-id": [ - "a09820a8-0a5a-4f67-9e5d-0d876b999acc" + "779a3881-3442-44f4-bb25-d303a64c0678" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T204944Z:a09820a8-0a5a-4f67-9e5d-0d876b999acc" + "WESTUS:20210217T015811Z:779a3881-3442-44f4-bb25-d303a64c0678" ], "Date": [ - "Mon, 31 Aug 2020 20:49:44 GMT" + "Wed, 17 Feb 2021 01:58:11 GMT" ], "Content-Length": [ "282" @@ -3114,20 +3407,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3137,29 +3433,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11951" ], "x-ms-request-id": [ - "4a55a903-d98f-4a96-8f88-09bb61718d23" + "7a233346-467c-4600-8b6b-ed3fdabde124" ], "x-ms-correlation-request-id": [ - "4a55a903-d98f-4a96-8f88-09bb61718d23" + "7a233346-467c-4600-8b6b-ed3fdabde124" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205004Z:4a55a903-d98f-4a96-8f88-09bb61718d23" + "WESTUS:20210217T015831Z:7a233346-467c-4600-8b6b-ed3fdabde124" ], "Date": [ - "Mon, 31 Aug 2020 20:50:04 GMT" + "Wed, 17 Feb 2021 01:58:31 GMT" ], "Content-Length": [ "282" @@ -3171,20 +3468,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3194,29 +3494,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11950" ], "x-ms-request-id": [ - "475b2866-7125-4799-b9ef-1247a3077b4c" + "253b7efc-958e-4efd-8fe2-5f0d4536c4f6" ], "x-ms-correlation-request-id": [ - "475b2866-7125-4799-b9ef-1247a3077b4c" + "253b7efc-958e-4efd-8fe2-5f0d4536c4f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205024Z:475b2866-7125-4799-b9ef-1247a3077b4c" + "WESTUS:20210217T015851Z:253b7efc-958e-4efd-8fe2-5f0d4536c4f6" ], "Date": [ - "Mon, 31 Aug 2020 20:50:23 GMT" + "Wed, 17 Feb 2021 01:58:51 GMT" ], "Content-Length": [ "282" @@ -3228,20 +3529,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3251,29 +3555,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11949" ], "x-ms-request-id": [ - "24284f02-adad-49a8-9dda-e59e83d607d6" + "5b6aeec3-a1ad-4766-bd50-eb8d9c542082" ], "x-ms-correlation-request-id": [ - "24284f02-adad-49a8-9dda-e59e83d607d6" + "5b6aeec3-a1ad-4766-bd50-eb8d9c542082" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205044Z:24284f02-adad-49a8-9dda-e59e83d607d6" + "WESTUS:20210217T015911Z:5b6aeec3-a1ad-4766-bd50-eb8d9c542082" ], "Date": [ - "Mon, 31 Aug 2020 20:50:43 GMT" + "Wed, 17 Feb 2021 01:59:11 GMT" ], "Content-Length": [ "282" @@ -3285,20 +3590,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3308,29 +3616,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11948" ], "x-ms-request-id": [ - "c3427920-40e5-4959-ac3e-1db2bc65d5b7" + "a1ba54f1-cfb5-4925-bfa0-38fd4a9cc710" ], "x-ms-correlation-request-id": [ - "c3427920-40e5-4959-ac3e-1db2bc65d5b7" + "a1ba54f1-cfb5-4925-bfa0-38fd4a9cc710" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205104Z:c3427920-40e5-4959-ac3e-1db2bc65d5b7" + "WESTUS:20210217T015932Z:a1ba54f1-cfb5-4925-bfa0-38fd4a9cc710" ], "Date": [ - "Mon, 31 Aug 2020 20:51:03 GMT" + "Wed, 17 Feb 2021 01:59:31 GMT" ], "Content-Length": [ "282" @@ -3342,20 +3651,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3365,29 +3677,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" ], "x-ms-request-id": [ - "88971a80-e009-45ee-b005-8c1ffbad493a" + "a5d06871-a7ec-4d90-b154-df16bb7c3274" ], "x-ms-correlation-request-id": [ - "88971a80-e009-45ee-b005-8c1ffbad493a" + "a5d06871-a7ec-4d90-b154-df16bb7c3274" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205124Z:88971a80-e009-45ee-b005-8c1ffbad493a" + "WESTUS:20210217T015952Z:a5d06871-a7ec-4d90-b154-df16bb7c3274" ], "Date": [ - "Mon, 31 Aug 2020 20:51:23 GMT" + "Wed, 17 Feb 2021 01:59:51 GMT" ], "Content-Length": [ "282" @@ -3399,20 +3712,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3422,29 +3738,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11946" ], "x-ms-request-id": [ - "866a7cc2-7df4-4d4f-8ca9-f9bccb275d80" + "e251e856-86ef-4cb0-8912-5513fb5af63d" ], "x-ms-correlation-request-id": [ - "866a7cc2-7df4-4d4f-8ca9-f9bccb275d80" + "e251e856-86ef-4cb0-8912-5513fb5af63d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205144Z:866a7cc2-7df4-4d4f-8ca9-f9bccb275d80" + "WESTUS:20210217T020012Z:e251e856-86ef-4cb0-8912-5513fb5af63d" ], "Date": [ - "Mon, 31 Aug 2020 20:51:44 GMT" + "Wed, 17 Feb 2021 02:00:12 GMT" ], "Content-Length": [ "282" @@ -3456,20 +3773,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3479,29 +3799,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11945" ], "x-ms-request-id": [ - "c0ed720d-fab7-4200-83ed-880bd4909b11" + "f2f0e9bb-4d2e-4b34-a994-6cb7284106aa" ], "x-ms-correlation-request-id": [ - "c0ed720d-fab7-4200-83ed-880bd4909b11" + "f2f0e9bb-4d2e-4b34-a994-6cb7284106aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205204Z:c0ed720d-fab7-4200-83ed-880bd4909b11" + "WESTUS:20210217T020032Z:f2f0e9bb-4d2e-4b34-a994-6cb7284106aa" ], "Date": [ - "Mon, 31 Aug 2020 20:52:04 GMT" + "Wed, 17 Feb 2021 02:00:32 GMT" ], "Content-Length": [ "282" @@ -3513,20 +3834,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3536,29 +3860,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11944" ], "x-ms-request-id": [ - "c1701bc0-383d-456c-abe4-20cf63e25e65" + "7d0ebd10-9556-48b1-8c0b-fa550de72229" ], "x-ms-correlation-request-id": [ - "c1701bc0-383d-456c-abe4-20cf63e25e65" + "7d0ebd10-9556-48b1-8c0b-fa550de72229" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205224Z:c1701bc0-383d-456c-abe4-20cf63e25e65" + "WESTUS:20210217T020052Z:7d0ebd10-9556-48b1-8c0b-fa550de72229" ], "Date": [ - "Mon, 31 Aug 2020 20:52:24 GMT" + "Wed, 17 Feb 2021 02:00:52 GMT" ], "Content-Length": [ "282" @@ -3570,20 +3895,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3593,29 +3921,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11943" ], "x-ms-request-id": [ - "6c2031e3-a292-4a13-9cdd-d835849173ed" + "c101e87d-8256-4960-a232-5cd798b434f2" ], "x-ms-correlation-request-id": [ - "6c2031e3-a292-4a13-9cdd-d835849173ed" + "c101e87d-8256-4960-a232-5cd798b434f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205245Z:6c2031e3-a292-4a13-9cdd-d835849173ed" + "WESTUS:20210217T020113Z:c101e87d-8256-4960-a232-5cd798b434f2" ], "Date": [ - "Mon, 31 Aug 2020 20:52:44 GMT" + "Wed, 17 Feb 2021 02:01:12 GMT" ], "Content-Length": [ "282" @@ -3627,20 +3956,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3650,29 +3982,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11942" ], "x-ms-request-id": [ - "8079ee86-34fc-412f-8fe5-d718179d255d" + "2bcc2738-9afe-4aee-bc78-3d929cba4fe5" ], "x-ms-correlation-request-id": [ - "8079ee86-34fc-412f-8fe5-d718179d255d" + "2bcc2738-9afe-4aee-bc78-3d929cba4fe5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205305Z:8079ee86-34fc-412f-8fe5-d718179d255d" + "WESTUS:20210217T020133Z:2bcc2738-9afe-4aee-bc78-3d929cba4fe5" ], "Date": [ - "Mon, 31 Aug 2020 20:53:04 GMT" + "Wed, 17 Feb 2021 02:01:32 GMT" ], "Content-Length": [ "282" @@ -3684,20 +4017,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3707,29 +4043,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11941" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4dd6cd7f-c23a-457f-962f-fd926daffa7c" + "8eed4b8e-c1d6-4109-bf18-3fdd674720d9" ], "x-ms-correlation-request-id": [ - "4dd6cd7f-c23a-457f-962f-fd926daffa7c" + "8eed4b8e-c1d6-4109-bf18-3fdd674720d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205325Z:4dd6cd7f-c23a-457f-962f-fd926daffa7c" + "WESTUS:20210217T020153Z:8eed4b8e-c1d6-4109-bf18-3fdd674720d9" ], "Date": [ - "Mon, 31 Aug 2020 20:53:24 GMT" + "Wed, 17 Feb 2021 02:01:52 GMT" ], "Content-Length": [ "282" @@ -3741,20 +4078,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3764,29 +4104,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11940" ], "x-ms-request-id": [ - "de4e2d69-d177-448c-9675-86930ca0a815" + "b9e3e67a-5bd0-4446-b4ba-2ab96f5868ae" ], "x-ms-correlation-request-id": [ - "de4e2d69-d177-448c-9675-86930ca0a815" + "b9e3e67a-5bd0-4446-b4ba-2ab96f5868ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205345Z:de4e2d69-d177-448c-9675-86930ca0a815" + "WESTUS:20210217T020214Z:b9e3e67a-5bd0-4446-b4ba-2ab96f5868ae" ], "Date": [ - "Mon, 31 Aug 2020 20:53:44 GMT" + "Wed, 17 Feb 2021 02:02:13 GMT" ], "Content-Length": [ "282" @@ -3798,20 +4139,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3821,29 +4165,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11939" ], "x-ms-request-id": [ - "77153e5a-05a1-497b-881a-90b3a3275ff7" + "66d21d32-7114-4228-b914-19c312e56c5f" ], "x-ms-correlation-request-id": [ - "77153e5a-05a1-497b-881a-90b3a3275ff7" + "66d21d32-7114-4228-b914-19c312e56c5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205405Z:77153e5a-05a1-497b-881a-90b3a3275ff7" + "WESTUS:20210217T020234Z:66d21d32-7114-4228-b914-19c312e56c5f" ], "Date": [ - "Mon, 31 Aug 2020 20:54:04 GMT" + "Wed, 17 Feb 2021 02:02:33 GMT" ], "Content-Length": [ "282" @@ -3855,20 +4200,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3878,29 +4226,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11938" ], "x-ms-request-id": [ - "4f90bfd0-792e-44c6-97cb-9ea272d9dd9a" + "a94ea1a7-6979-4059-a1a1-2f35dfe0579b" ], "x-ms-correlation-request-id": [ - "4f90bfd0-792e-44c6-97cb-9ea272d9dd9a" + "a94ea1a7-6979-4059-a1a1-2f35dfe0579b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205425Z:4f90bfd0-792e-44c6-97cb-9ea272d9dd9a" + "WESTUS:20210217T020254Z:a94ea1a7-6979-4059-a1a1-2f35dfe0579b" ], "Date": [ - "Mon, 31 Aug 2020 20:54:24 GMT" + "Wed, 17 Feb 2021 02:02:54 GMT" ], "Content-Length": [ "282" @@ -3912,20 +4261,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3935,29 +4287,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11937" ], "x-ms-request-id": [ - "ccb4497a-406f-45f4-a096-b687b2f49bb6" + "466f9328-75fc-4505-b2d0-9b125fb98fd7" ], "x-ms-correlation-request-id": [ - "ccb4497a-406f-45f4-a096-b687b2f49bb6" + "466f9328-75fc-4505-b2d0-9b125fb98fd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205445Z:ccb4497a-406f-45f4-a096-b687b2f49bb6" + "WESTUS:20210217T020314Z:466f9328-75fc-4505-b2d0-9b125fb98fd7" ], "Date": [ - "Mon, 31 Aug 2020 20:54:44 GMT" + "Wed, 17 Feb 2021 02:03:14 GMT" ], "Content-Length": [ "282" @@ -3969,20 +4322,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3992,29 +4348,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "11936" ], "x-ms-request-id": [ - "5fd17efa-ca43-43bd-a9ef-6cb769ab602e" + "1f1a5ecd-7dc5-415d-aeb6-ecd4be869962" ], "x-ms-correlation-request-id": [ - "5fd17efa-ca43-43bd-a9ef-6cb769ab602e" + "1f1a5ecd-7dc5-415d-aeb6-ecd4be869962" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205505Z:5fd17efa-ca43-43bd-a9ef-6cb769ab602e" + "WESTUS:20210217T020334Z:1f1a5ecd-7dc5-415d-aeb6-ecd4be869962" ], "Date": [ - "Mon, 31 Aug 2020 20:55:04 GMT" + "Wed, 17 Feb 2021 02:03:34 GMT" ], "Content-Length": [ "282" @@ -4026,20 +4383,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4049,29 +4409,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11935" ], "x-ms-request-id": [ - "68471e6b-dff5-4129-92cb-a47a959d7512" + "1f223d4a-edb4-4456-9628-43dc0ca0aec4" ], "x-ms-correlation-request-id": [ - "68471e6b-dff5-4129-92cb-a47a959d7512" + "1f223d4a-edb4-4456-9628-43dc0ca0aec4" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205525Z:68471e6b-dff5-4129-92cb-a47a959d7512" + "WESTUS:20210217T020355Z:1f223d4a-edb4-4456-9628-43dc0ca0aec4" ], "Date": [ - "Mon, 31 Aug 2020 20:55:25 GMT" + "Wed, 17 Feb 2021 02:03:54 GMT" ], "Content-Length": [ "282" @@ -4083,20 +4444,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4106,29 +4470,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11934" ], "x-ms-request-id": [ - "b5448cb4-721a-4e96-8b4d-13a3d4f8efcc" + "b37f8ed8-4159-4d91-8711-d2b4f906d027" ], "x-ms-correlation-request-id": [ - "b5448cb4-721a-4e96-8b4d-13a3d4f8efcc" + "b37f8ed8-4159-4d91-8711-d2b4f906d027" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205545Z:b5448cb4-721a-4e96-8b4d-13a3d4f8efcc" + "WESTUS:20210217T020415Z:b37f8ed8-4159-4d91-8711-d2b4f906d027" ], "Date": [ - "Mon, 31 Aug 2020 20:55:45 GMT" + "Wed, 17 Feb 2021 02:04:14 GMT" ], "Content-Length": [ "282" @@ -4140,20 +4505,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4163,29 +4531,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11933" ], "x-ms-request-id": [ - "471c8ce4-993c-4e4a-85dc-9e260e4bc385" + "f71c0378-6abb-4b16-b5b0-df0b41317c5e" ], "x-ms-correlation-request-id": [ - "471c8ce4-993c-4e4a-85dc-9e260e4bc385" + "f71c0378-6abb-4b16-b5b0-df0b41317c5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205605Z:471c8ce4-993c-4e4a-85dc-9e260e4bc385" + "WESTUS:20210217T020435Z:f71c0378-6abb-4b16-b5b0-df0b41317c5e" ], "Date": [ - "Mon, 31 Aug 2020 20:56:05 GMT" + "Wed, 17 Feb 2021 02:04:34 GMT" ], "Content-Length": [ "282" @@ -4197,20 +4566,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4220,29 +4592,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11932" ], "x-ms-request-id": [ - "7ab67f12-7181-41e6-8423-3dc6f2b26028" + "4f39da1a-e1f6-4aaf-9d07-bb2b46d71647" ], "x-ms-correlation-request-id": [ - "7ab67f12-7181-41e6-8423-3dc6f2b26028" + "4f39da1a-e1f6-4aaf-9d07-bb2b46d71647" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205625Z:7ab67f12-7181-41e6-8423-3dc6f2b26028" + "WESTUS:20210217T020455Z:4f39da1a-e1f6-4aaf-9d07-bb2b46d71647" ], "Date": [ - "Mon, 31 Aug 2020 20:56:25 GMT" + "Wed, 17 Feb 2021 02:04:55 GMT" ], "Content-Length": [ "282" @@ -4254,20 +4627,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4277,29 +4653,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11931" ], "x-ms-request-id": [ - "eca0d948-2925-45c2-9a24-3c0402e0d8ed" + "28b9172f-e7cd-4629-9bcb-1a9ac32e79e0" ], "x-ms-correlation-request-id": [ - "eca0d948-2925-45c2-9a24-3c0402e0d8ed" + "28b9172f-e7cd-4629-9bcb-1a9ac32e79e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205646Z:eca0d948-2925-45c2-9a24-3c0402e0d8ed" + "WESTUS:20210217T020515Z:28b9172f-e7cd-4629-9bcb-1a9ac32e79e0" ], "Date": [ - "Mon, 31 Aug 2020 20:56:46 GMT" + "Wed, 17 Feb 2021 02:05:15 GMT" ], "Content-Length": [ "282" @@ -4311,20 +4688,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4334,29 +4714,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11930" ], "x-ms-request-id": [ - "ab060a43-b8d4-4fe1-b7c8-c90d9d676faf" + "2e062e9b-aba8-4016-8f62-d73bd8b33462" ], "x-ms-correlation-request-id": [ - "ab060a43-b8d4-4fe1-b7c8-c90d9d676faf" + "2e062e9b-aba8-4016-8f62-d73bd8b33462" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205706Z:ab060a43-b8d4-4fe1-b7c8-c90d9d676faf" + "WESTUS:20210217T020535Z:2e062e9b-aba8-4016-8f62-d73bd8b33462" ], "Date": [ - "Mon, 31 Aug 2020 20:57:06 GMT" + "Wed, 17 Feb 2021 02:05:35 GMT" ], "Content-Length": [ "282" @@ -4368,20 +4749,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4391,29 +4775,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "11929" ], "x-ms-request-id": [ - "0350867a-9a52-48d2-af73-d8cbfb1caaff" + "4a1e585d-3509-4db7-b6dd-3be1161891cf" ], "x-ms-correlation-request-id": [ - "0350867a-9a52-48d2-af73-d8cbfb1caaff" + "4a1e585d-3509-4db7-b6dd-3be1161891cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205726Z:0350867a-9a52-48d2-af73-d8cbfb1caaff" + "WESTUS:20210217T020556Z:4a1e585d-3509-4db7-b6dd-3be1161891cf" ], "Date": [ - "Mon, 31 Aug 2020 20:57:25 GMT" + "Wed, 17 Feb 2021 02:05:55 GMT" ], "Content-Length": [ "282" @@ -4425,20 +4810,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4448,29 +4836,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11928" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fe219e47-a1cf-4efe-9b14-9f3cbf8509cb" + "dea398e0-a050-4a9d-a9c6-df562a91a031" ], "x-ms-correlation-request-id": [ - "fe219e47-a1cf-4efe-9b14-9f3cbf8509cb" + "dea398e0-a050-4a9d-a9c6-df562a91a031" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205746Z:fe219e47-a1cf-4efe-9b14-9f3cbf8509cb" + "WESTUS:20210217T020616Z:dea398e0-a050-4a9d-a9c6-df562a91a031" ], "Date": [ - "Mon, 31 Aug 2020 20:57:46 GMT" + "Wed, 17 Feb 2021 02:06:15 GMT" ], "Content-Length": [ "282" @@ -4482,20 +4871,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4505,29 +4897,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11927" ], "x-ms-request-id": [ - "df8ce82d-0511-468d-8a9d-e10e61f1a98c" + "95924467-d2a6-484c-aeb7-c2cacad6ea3e" ], "x-ms-correlation-request-id": [ - "df8ce82d-0511-468d-8a9d-e10e61f1a98c" + "95924467-d2a6-484c-aeb7-c2cacad6ea3e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205806Z:df8ce82d-0511-468d-8a9d-e10e61f1a98c" + "WESTUS:20210217T020637Z:95924467-d2a6-484c-aeb7-c2cacad6ea3e" ], "Date": [ - "Mon, 31 Aug 2020 20:58:05 GMT" + "Wed, 17 Feb 2021 02:06:36 GMT" ], "Content-Length": [ "282" @@ -4539,20 +4932,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4562,29 +4958,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11926" ], "x-ms-request-id": [ - "b0d0ff1b-a538-46c4-b3b1-dee941931182" + "f6de6a25-9ada-42ee-bee2-a4a34013f135" ], "x-ms-correlation-request-id": [ - "b0d0ff1b-a538-46c4-b3b1-dee941931182" + "f6de6a25-9ada-42ee-bee2-a4a34013f135" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205826Z:b0d0ff1b-a538-46c4-b3b1-dee941931182" + "WESTUS:20210217T020657Z:f6de6a25-9ada-42ee-bee2-a4a34013f135" ], "Date": [ - "Mon, 31 Aug 2020 20:58:25 GMT" + "Wed, 17 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "282" @@ -4596,20 +4993,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4619,29 +5019,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11925" ], "x-ms-request-id": [ - "80f78672-f093-489e-887c-1b4cf52f209f" + "35707330-7f58-4d8f-b433-640ce35708b5" ], "x-ms-correlation-request-id": [ - "80f78672-f093-489e-887c-1b4cf52f209f" + "35707330-7f58-4d8f-b433-640ce35708b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205846Z:80f78672-f093-489e-887c-1b4cf52f209f" + "WESTUS:20210217T020717Z:35707330-7f58-4d8f-b433-640ce35708b5" ], "Date": [ - "Mon, 31 Aug 2020 20:58:46 GMT" + "Wed, 17 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "282" @@ -4653,20 +5054,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4676,29 +5080,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11924" ], "x-ms-request-id": [ - "8858c8b3-39ae-435a-b734-08dd7fef18c6" + "47ccd4b1-90ab-4c4a-9064-17b5a0b21a54" ], "x-ms-correlation-request-id": [ - "8858c8b3-39ae-435a-b734-08dd7fef18c6" + "47ccd4b1-90ab-4c4a-9064-17b5a0b21a54" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205906Z:8858c8b3-39ae-435a-b734-08dd7fef18c6" + "WESTUS:20210217T020737Z:47ccd4b1-90ab-4c4a-9064-17b5a0b21a54" ], "Date": [ - "Mon, 31 Aug 2020 20:59:05 GMT" + "Wed, 17 Feb 2021 02:07:37 GMT" ], "Content-Length": [ "282" @@ -4710,20 +5115,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4733,29 +5141,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11923" ], "x-ms-request-id": [ - "a249e63f-141e-4c52-97ce-1c5be64eece6" + "c25fd302-7430-4443-a320-a0c5a36f5cbd" ], "x-ms-correlation-request-id": [ - "a249e63f-141e-4c52-97ce-1c5be64eece6" + "c25fd302-7430-4443-a320-a0c5a36f5cbd" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205926Z:a249e63f-141e-4c52-97ce-1c5be64eece6" + "WESTUS:20210217T020757Z:c25fd302-7430-4443-a320-a0c5a36f5cbd" ], "Date": [ - "Mon, 31 Aug 2020 20:59:26 GMT" + "Wed, 17 Feb 2021 02:07:57 GMT" ], "Content-Length": [ "282" @@ -4767,20 +5176,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4790,29 +5202,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11922" ], "x-ms-request-id": [ - "387aca29-ab7d-45f1-8bf1-0ca036781ccf" + "228f4fcc-d7c3-4c74-872c-a2939371800c" ], "x-ms-correlation-request-id": [ - "387aca29-ab7d-45f1-8bf1-0ca036781ccf" + "228f4fcc-d7c3-4c74-872c-a2939371800c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T205947Z:387aca29-ab7d-45f1-8bf1-0ca036781ccf" + "WESTUS:20210217T020817Z:228f4fcc-d7c3-4c74-872c-a2939371800c" ], "Date": [ - "Mon, 31 Aug 2020 20:59:46 GMT" + "Wed, 17 Feb 2021 02:08:17 GMT" ], "Content-Length": [ "282" @@ -4824,20 +5237,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4847,29 +5263,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11921" ], "x-ms-request-id": [ - "1479692c-09ab-46b8-a635-a8a7d89b72c4" + "876a091a-a148-434e-a28e-4a675d00c60d" ], "x-ms-correlation-request-id": [ - "1479692c-09ab-46b8-a635-a8a7d89b72c4" + "876a091a-a148-434e-a28e-4a675d00c60d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210007Z:1479692c-09ab-46b8-a635-a8a7d89b72c4" + "WESTUS:20210217T020838Z:876a091a-a148-434e-a28e-4a675d00c60d" ], "Date": [ - "Mon, 31 Aug 2020 21:00:06 GMT" + "Wed, 17 Feb 2021 02:08:37 GMT" ], "Content-Length": [ "282" @@ -4881,20 +5298,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4902,31 +5322,32 @@ "no-cache" ], "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11920" ], "x-ms-request-id": [ - "a6919488-3730-4ede-a7fb-7047776e4abc" + "da625986-3810-400d-ae5f-5dc7468ec30e" ], "x-ms-correlation-request-id": [ - "a6919488-3730-4ede-a7fb-7047776e4abc" + "da625986-3810-400d-ae5f-5dc7468ec30e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210027Z:a6919488-3730-4ede-a7fb-7047776e4abc" + "WESTUS:20210217T020858Z:da625986-3810-400d-ae5f-5dc7468ec30e" ], "Date": [ - "Mon, 31 Aug 2020 21:00:26 GMT" + "Wed, 17 Feb 2021 02:08:57 GMT" ], "Content-Length": [ "282" @@ -4938,20 +5359,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4961,29 +5385,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11919" ], "x-ms-request-id": [ - "d9b1ee92-0cb8-484e-8f24-0850e008a290" + "f55569d9-3d48-4e15-8d7d-6ab508f899d5" ], "x-ms-correlation-request-id": [ - "d9b1ee92-0cb8-484e-8f24-0850e008a290" + "f55569d9-3d48-4e15-8d7d-6ab508f899d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210047Z:d9b1ee92-0cb8-484e-8f24-0850e008a290" + "WESTUS:20210217T020918Z:f55569d9-3d48-4e15-8d7d-6ab508f899d5" ], "Date": [ - "Mon, 31 Aug 2020 21:00:46 GMT" + "Wed, 17 Feb 2021 02:09:18 GMT" ], "Content-Length": [ "282" @@ -4995,20 +5420,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5018,29 +5446,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "11918" ], "x-ms-request-id": [ - "204ea8c5-d845-4d35-bd59-9128cf90d470" + "22758a98-b900-41eb-bc54-14f578d25566" ], "x-ms-correlation-request-id": [ - "204ea8c5-d845-4d35-bd59-9128cf90d470" + "22758a98-b900-41eb-bc54-14f578d25566" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210107Z:204ea8c5-d845-4d35-bd59-9128cf90d470" + "WESTUS:20210217T020938Z:22758a98-b900-41eb-bc54-14f578d25566" ], "Date": [ - "Mon, 31 Aug 2020 21:01:06 GMT" + "Wed, 17 Feb 2021 02:09:38 GMT" ], "Content-Length": [ "282" @@ -5052,20 +5481,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5075,29 +5507,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11917" ], "x-ms-request-id": [ - "5a2be683-9236-4d7d-a24e-0401b6033523" + "6063a551-438a-48e6-bbe1-dc9b01958d65" ], "x-ms-correlation-request-id": [ - "5a2be683-9236-4d7d-a24e-0401b6033523" + "6063a551-438a-48e6-bbe1-dc9b01958d65" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210127Z:5a2be683-9236-4d7d-a24e-0401b6033523" + "WESTUS:20210217T020958Z:6063a551-438a-48e6-bbe1-dc9b01958d65" ], "Date": [ - "Mon, 31 Aug 2020 21:01:26 GMT" + "Wed, 17 Feb 2021 02:09:58 GMT" ], "Content-Length": [ "282" @@ -5109,20 +5542,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5132,29 +5568,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" ], "x-ms-request-id": [ - "90b4616c-edea-4789-9d05-68116bfa9017" + "99f08f18-6cff-4a38-b824-a7274601dfe4" ], "x-ms-correlation-request-id": [ - "90b4616c-edea-4789-9d05-68116bfa9017" + "99f08f18-6cff-4a38-b824-a7274601dfe4" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210147Z:90b4616c-edea-4789-9d05-68116bfa9017" + "WESTUS:20210217T021019Z:99f08f18-6cff-4a38-b824-a7274601dfe4" ], "Date": [ - "Mon, 31 Aug 2020 21:01:46 GMT" + "Wed, 17 Feb 2021 02:10:18 GMT" ], "Content-Length": [ "282" @@ -5166,20 +5603,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5189,29 +5629,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11915" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "324cbc38-c2c9-4f11-9353-40cc46b58474" + "1ada1efa-9a2f-40dd-896c-ed9c51823a6b" ], "x-ms-correlation-request-id": [ - "324cbc38-c2c9-4f11-9353-40cc46b58474" + "1ada1efa-9a2f-40dd-896c-ed9c51823a6b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210207Z:324cbc38-c2c9-4f11-9353-40cc46b58474" + "WESTUS:20210217T021039Z:1ada1efa-9a2f-40dd-896c-ed9c51823a6b" ], "Date": [ - "Mon, 31 Aug 2020 21:02:06 GMT" + "Wed, 17 Feb 2021 02:10:38 GMT" ], "Content-Length": [ "282" @@ -5223,20 +5664,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5246,29 +5690,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11914" ], "x-ms-request-id": [ - "90a5c985-e7c7-4298-96a3-b3921845805d" + "61314a4d-dbda-4d64-9698-7b4e8d610280" ], "x-ms-correlation-request-id": [ - "90a5c985-e7c7-4298-96a3-b3921845805d" + "61314a4d-dbda-4d64-9698-7b4e8d610280" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210227Z:90a5c985-e7c7-4298-96a3-b3921845805d" + "WESTUS:20210217T021100Z:61314a4d-dbda-4d64-9698-7b4e8d610280" ], "Date": [ - "Mon, 31 Aug 2020 21:02:26 GMT" + "Wed, 17 Feb 2021 02:10:59 GMT" ], "Content-Length": [ "282" @@ -5280,20 +5725,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5303,29 +5751,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11913" ], "x-ms-request-id": [ - "68ba21c7-f7c5-4b09-9188-5a8e6091d2b2" + "97f16809-f8a3-4cd1-b7b8-6c7b9db13434" ], "x-ms-correlation-request-id": [ - "68ba21c7-f7c5-4b09-9188-5a8e6091d2b2" + "97f16809-f8a3-4cd1-b7b8-6c7b9db13434" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210247Z:68ba21c7-f7c5-4b09-9188-5a8e6091d2b2" + "WESTUS:20210217T021120Z:97f16809-f8a3-4cd1-b7b8-6c7b9db13434" ], "Date": [ - "Mon, 31 Aug 2020 21:02:46 GMT" + "Wed, 17 Feb 2021 02:11:19 GMT" ], "Content-Length": [ "282" @@ -5337,20 +5786,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5360,29 +5812,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11911" ], "x-ms-request-id": [ - "672dab67-602d-444b-a998-8eb21110ccf3" + "71e53bc2-9895-4ca5-98bf-ccfd04eddeb2" ], "x-ms-correlation-request-id": [ - "672dab67-602d-444b-a998-8eb21110ccf3" + "71e53bc2-9895-4ca5-98bf-ccfd04eddeb2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210307Z:672dab67-602d-444b-a998-8eb21110ccf3" + "WESTUS:20210217T021140Z:71e53bc2-9895-4ca5-98bf-ccfd04eddeb2" ], "Date": [ - "Mon, 31 Aug 2020 21:03:07 GMT" + "Wed, 17 Feb 2021 02:11:40 GMT" ], "Content-Length": [ "282" @@ -5394,20 +5847,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5417,29 +5873,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" + "11910" ], "x-ms-request-id": [ - "fa3b39a9-914b-47a4-9f38-e22fd8923912" + "bb1a5968-e8d5-4e09-82c0-002cd0a45aa0" ], "x-ms-correlation-request-id": [ - "fa3b39a9-914b-47a4-9f38-e22fd8923912" + "bb1a5968-e8d5-4e09-82c0-002cd0a45aa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210327Z:fa3b39a9-914b-47a4-9f38-e22fd8923912" + "WESTUS:20210217T021200Z:bb1a5968-e8d5-4e09-82c0-002cd0a45aa0" ], "Date": [ - "Mon, 31 Aug 2020 21:03:27 GMT" + "Wed, 17 Feb 2021 02:12:00 GMT" ], "Content-Length": [ "282" @@ -5451,20 +5908,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5474,29 +5934,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11909" ], "x-ms-request-id": [ - "cdd55a13-0c37-4cea-b269-b848909880ae" + "c0b99c46-7d61-4175-a6e5-6ceb5b767053" ], "x-ms-correlation-request-id": [ - "cdd55a13-0c37-4cea-b269-b848909880ae" + "c0b99c46-7d61-4175-a6e5-6ceb5b767053" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210348Z:cdd55a13-0c37-4cea-b269-b848909880ae" + "WESTUS:20210217T021220Z:c0b99c46-7d61-4175-a6e5-6ceb5b767053" ], "Date": [ - "Mon, 31 Aug 2020 21:03:47 GMT" + "Wed, 17 Feb 2021 02:12:20 GMT" ], "Content-Length": [ "282" @@ -5508,20 +5969,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5531,29 +5995,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11908" ], "x-ms-request-id": [ - "e878d7b1-6e12-4eb7-b7fd-b15e9969ab66" + "6516a3a0-bfbd-410b-b8d2-925371003691" ], "x-ms-correlation-request-id": [ - "e878d7b1-6e12-4eb7-b7fd-b15e9969ab66" + "6516a3a0-bfbd-410b-b8d2-925371003691" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210408Z:e878d7b1-6e12-4eb7-b7fd-b15e9969ab66" + "WESTUS:20210217T021240Z:6516a3a0-bfbd-410b-b8d2-925371003691" ], "Date": [ - "Mon, 31 Aug 2020 21:04:07 GMT" + "Wed, 17 Feb 2021 02:12:40 GMT" ], "Content-Length": [ "282" @@ -5565,20 +6030,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5588,29 +6056,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11907" ], "x-ms-request-id": [ - "fb898feb-96a4-4eac-98f5-ca0deb17f2bb" + "8ed85fe2-d040-40de-a1a4-59900d682297" ], "x-ms-correlation-request-id": [ - "fb898feb-96a4-4eac-98f5-ca0deb17f2bb" + "8ed85fe2-d040-40de-a1a4-59900d682297" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210428Z:fb898feb-96a4-4eac-98f5-ca0deb17f2bb" + "WESTUS:20210217T021301Z:8ed85fe2-d040-40de-a1a4-59900d682297" ], "Date": [ - "Mon, 31 Aug 2020 21:04:27 GMT" + "Wed, 17 Feb 2021 02:13:00 GMT" ], "Content-Length": [ "282" @@ -5622,20 +6091,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5645,29 +6117,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11906" ], "x-ms-request-id": [ - "4ba01752-005c-426a-80e4-d36183b8606d" + "f3ad5045-32d5-4550-9c10-0524f536aae7" ], "x-ms-correlation-request-id": [ - "4ba01752-005c-426a-80e4-d36183b8606d" + "f3ad5045-32d5-4550-9c10-0524f536aae7" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210448Z:4ba01752-005c-426a-80e4-d36183b8606d" + "WESTUS:20210217T021321Z:f3ad5045-32d5-4550-9c10-0524f536aae7" ], "Date": [ - "Mon, 31 Aug 2020 21:04:47 GMT" + "Wed, 17 Feb 2021 02:13:20 GMT" ], "Content-Length": [ "282" @@ -5679,20 +6152,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5702,29 +6178,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11905" ], "x-ms-request-id": [ - "8e677cc5-4a23-4f0a-87fc-9f7e698d192a" + "d32a4e17-1cbd-4ad4-b164-507ec9fdddaa" ], "x-ms-correlation-request-id": [ - "8e677cc5-4a23-4f0a-87fc-9f7e698d192a" + "d32a4e17-1cbd-4ad4-b164-507ec9fdddaa" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210508Z:8e677cc5-4a23-4f0a-87fc-9f7e698d192a" + "WESTUS:20210217T021341Z:d32a4e17-1cbd-4ad4-b164-507ec9fdddaa" ], "Date": [ - "Mon, 31 Aug 2020 21:05:07 GMT" + "Wed, 17 Feb 2021 02:13:40 GMT" ], "Content-Length": [ "282" @@ -5736,20 +6213,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5759,29 +6239,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11904" ], "x-ms-request-id": [ - "c068a636-ba16-4ea5-865e-c983f73de4f5" + "802405fc-f2ea-4747-ba1d-95367538ddc3" ], "x-ms-correlation-request-id": [ - "c068a636-ba16-4ea5-865e-c983f73de4f5" + "802405fc-f2ea-4747-ba1d-95367538ddc3" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210528Z:c068a636-ba16-4ea5-865e-c983f73de4f5" + "WESTUS:20210217T021401Z:802405fc-f2ea-4747-ba1d-95367538ddc3" ], "Date": [ - "Mon, 31 Aug 2020 21:05:27 GMT" + "Wed, 17 Feb 2021 02:14:01 GMT" ], "Content-Length": [ "282" @@ -5793,20 +6274,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5816,29 +6300,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11903" ], "x-ms-request-id": [ - "47200e38-374e-4a06-abb1-6cfc7bdf6b32" + "a73b0c9f-21da-42af-b56b-efa30d005a01" ], "x-ms-correlation-request-id": [ - "47200e38-374e-4a06-abb1-6cfc7bdf6b32" + "a73b0c9f-21da-42af-b56b-efa30d005a01" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210548Z:47200e38-374e-4a06-abb1-6cfc7bdf6b32" + "WESTUS:20210217T021421Z:a73b0c9f-21da-42af-b56b-efa30d005a01" ], "Date": [ - "Mon, 31 Aug 2020 21:05:47 GMT" + "Wed, 17 Feb 2021 02:14:21 GMT" ], "Content-Length": [ "282" @@ -5850,20 +6335,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5873,29 +6361,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11902" ], "x-ms-request-id": [ - "15693b8e-bece-4077-9d31-4176dd40d501" + "db240006-e368-4968-bdd2-0ee074d478ba" ], "x-ms-correlation-request-id": [ - "15693b8e-bece-4077-9d31-4176dd40d501" + "db240006-e368-4968-bdd2-0ee074d478ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210608Z:15693b8e-bece-4077-9d31-4176dd40d501" + "WESTUS:20210217T021441Z:db240006-e368-4968-bdd2-0ee074d478ba" ], "Date": [ - "Mon, 31 Aug 2020 21:06:08 GMT" + "Wed, 17 Feb 2021 02:14:41 GMT" ], "Content-Length": [ "282" @@ -5907,20 +6396,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5930,29 +6422,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11901" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2a64aeca-7216-45ed-8693-d8ba75a1d595" + "d32f5eff-89b5-43c5-b84f-c4fc07dc10a0" ], "x-ms-correlation-request-id": [ - "2a64aeca-7216-45ed-8693-d8ba75a1d595" + "d32f5eff-89b5-43c5-b84f-c4fc07dc10a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210628Z:2a64aeca-7216-45ed-8693-d8ba75a1d595" + "WESTUS:20210217T021502Z:d32f5eff-89b5-43c5-b84f-c4fc07dc10a0" ], "Date": [ - "Mon, 31 Aug 2020 21:06:28 GMT" + "Wed, 17 Feb 2021 02:15:01 GMT" ], "Content-Length": [ "282" @@ -5964,20 +6457,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5987,29 +6483,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "11900" ], "x-ms-request-id": [ - "54a93ecf-2125-47ff-9c0b-92085fe00e15" + "f85b0e9d-718e-433b-9e53-86f708668486" ], "x-ms-correlation-request-id": [ - "54a93ecf-2125-47ff-9c0b-92085fe00e15" + "f85b0e9d-718e-433b-9e53-86f708668486" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210648Z:54a93ecf-2125-47ff-9c0b-92085fe00e15" + "WESTUS:20210217T021523Z:f85b0e9d-718e-433b-9e53-86f708668486" ], "Date": [ - "Mon, 31 Aug 2020 21:06:48 GMT" + "Wed, 17 Feb 2021 02:15:22 GMT" ], "Content-Length": [ "282" @@ -6021,20 +6518,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6044,29 +6544,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" ], "x-ms-request-id": [ - "353b5b4d-fc57-47f2-87ae-278b4c67a905" + "fe26b9a7-391d-4c59-b948-d22d7ad86242" ], "x-ms-correlation-request-id": [ - "353b5b4d-fc57-47f2-87ae-278b4c67a905" + "fe26b9a7-391d-4c59-b948-d22d7ad86242" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210708Z:353b5b4d-fc57-47f2-87ae-278b4c67a905" + "WESTUS:20210217T021543Z:fe26b9a7-391d-4c59-b948-d22d7ad86242" ], "Date": [ - "Mon, 31 Aug 2020 21:07:08 GMT" + "Wed, 17 Feb 2021 02:15:42 GMT" ], "Content-Length": [ "282" @@ -6078,20 +6579,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6101,29 +6605,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "11898" ], "x-ms-request-id": [ - "932bd703-6ec0-44c1-8038-9f6d5b13fe60" + "7d348d4e-3395-4d21-9e86-99c14953292d" ], "x-ms-correlation-request-id": [ - "932bd703-6ec0-44c1-8038-9f6d5b13fe60" + "7d348d4e-3395-4d21-9e86-99c14953292d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210728Z:932bd703-6ec0-44c1-8038-9f6d5b13fe60" + "WESTUS:20210217T021603Z:7d348d4e-3395-4d21-9e86-99c14953292d" ], "Date": [ - "Mon, 31 Aug 2020 21:07:28 GMT" + "Wed, 17 Feb 2021 02:16:03 GMT" ], "Content-Length": [ "282" @@ -6135,20 +6640,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6158,29 +6666,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11897" ], "x-ms-request-id": [ - "ca9baa16-57b2-4f95-a78f-9ca114b07147" + "91f4b2fa-d945-4c1c-9ece-51cec942836d" ], "x-ms-correlation-request-id": [ - "ca9baa16-57b2-4f95-a78f-9ca114b07147" + "91f4b2fa-d945-4c1c-9ece-51cec942836d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210749Z:ca9baa16-57b2-4f95-a78f-9ca114b07147" + "WESTUS:20210217T021623Z:91f4b2fa-d945-4c1c-9ece-51cec942836d" ], "Date": [ - "Mon, 31 Aug 2020 21:07:48 GMT" + "Wed, 17 Feb 2021 02:16:23 GMT" ], "Content-Length": [ "282" @@ -6192,20 +6701,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6215,29 +6727,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11896" ], "x-ms-request-id": [ - "c31c58b0-a4a3-4c71-a68c-6e94310f9015" + "7bd00f8d-f452-48fd-9203-bac58bcbaa73" ], "x-ms-correlation-request-id": [ - "c31c58b0-a4a3-4c71-a68c-6e94310f9015" + "7bd00f8d-f452-48fd-9203-bac58bcbaa73" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210809Z:c31c58b0-a4a3-4c71-a68c-6e94310f9015" + "WESTUS:20210217T021643Z:7bd00f8d-f452-48fd-9203-bac58bcbaa73" ], "Date": [ - "Mon, 31 Aug 2020 21:08:08 GMT" + "Wed, 17 Feb 2021 02:16:43 GMT" ], "Content-Length": [ "282" @@ -6249,20 +6762,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6272,29 +6788,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11895" ], "x-ms-request-id": [ - "26685674-5dbd-45a4-955f-d5f7b669bf81" + "a3ba60dc-3f56-4d65-a132-d647451f04ff" ], "x-ms-correlation-request-id": [ - "26685674-5dbd-45a4-955f-d5f7b669bf81" + "a3ba60dc-3f56-4d65-a132-d647451f04ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210829Z:26685674-5dbd-45a4-955f-d5f7b669bf81" + "WESTUS:20210217T021703Z:a3ba60dc-3f56-4d65-a132-d647451f04ff" ], "Date": [ - "Mon, 31 Aug 2020 21:08:29 GMT" + "Wed, 17 Feb 2021 02:17:03 GMT" ], "Content-Length": [ "282" @@ -6306,20 +6823,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6329,29 +6849,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11894" ], "x-ms-request-id": [ - "0b81f02a-3d51-4728-baac-0c89f6ada4c9" + "6df0ea75-fae7-4b15-9260-5ee335b584a6" ], "x-ms-correlation-request-id": [ - "0b81f02a-3d51-4728-baac-0c89f6ada4c9" + "6df0ea75-fae7-4b15-9260-5ee335b584a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210849Z:0b81f02a-3d51-4728-baac-0c89f6ada4c9" + "WESTUS:20210217T021724Z:6df0ea75-fae7-4b15-9260-5ee335b584a6" ], "Date": [ - "Mon, 31 Aug 2020 21:08:48 GMT" + "Wed, 17 Feb 2021 02:17:23 GMT" ], "Content-Length": [ "282" @@ -6363,20 +6884,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6386,29 +6910,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11893" ], "x-ms-request-id": [ - "341c079b-df8e-41a9-a311-435db7aec8c6" + "02c76de3-35df-440d-a617-8ad8d8be2a1a" ], "x-ms-correlation-request-id": [ - "341c079b-df8e-41a9-a311-435db7aec8c6" + "02c76de3-35df-440d-a617-8ad8d8be2a1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210909Z:341c079b-df8e-41a9-a311-435db7aec8c6" + "WESTUS:20210217T021744Z:02c76de3-35df-440d-a617-8ad8d8be2a1a" ], "Date": [ - "Mon, 31 Aug 2020 21:09:08 GMT" + "Wed, 17 Feb 2021 02:17:43 GMT" ], "Content-Length": [ "282" @@ -6420,20 +6945,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6443,29 +6971,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11892" ], "x-ms-request-id": [ - "42afd3e8-ac7e-44d1-9609-87cc7a1e1e96" + "dcfc4d75-444b-4af1-8bb2-18bc5812dca5" ], "x-ms-correlation-request-id": [ - "42afd3e8-ac7e-44d1-9609-87cc7a1e1e96" + "dcfc4d75-444b-4af1-8bb2-18bc5812dca5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210929Z:42afd3e8-ac7e-44d1-9609-87cc7a1e1e96" + "WESTUS:20210217T021804Z:dcfc4d75-444b-4af1-8bb2-18bc5812dca5" ], "Date": [ - "Mon, 31 Aug 2020 21:09:28 GMT" + "Wed, 17 Feb 2021 02:18:03 GMT" ], "Content-Length": [ "282" @@ -6477,20 +7006,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6500,29 +7032,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11890" ], "x-ms-request-id": [ - "4a334222-1028-4e54-871a-22627de106d8" + "f3333503-c9bf-4e61-b3f8-e755c392959d" ], "x-ms-correlation-request-id": [ - "4a334222-1028-4e54-871a-22627de106d8" + "f3333503-c9bf-4e61-b3f8-e755c392959d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T210949Z:4a334222-1028-4e54-871a-22627de106d8" + "WESTUS:20210217T021824Z:f3333503-c9bf-4e61-b3f8-e755c392959d" ], "Date": [ - "Mon, 31 Aug 2020 21:09:48 GMT" + "Wed, 17 Feb 2021 02:18:23 GMT" ], "Content-Length": [ "282" @@ -6534,20 +7067,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6557,29 +7093,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11889" ], "x-ms-request-id": [ - "2b10f569-dcf7-4a5b-861a-ac2b117ff8b2" + "baa5e855-f563-41ee-b9ab-fe1c0eeef0ba" ], "x-ms-correlation-request-id": [ - "2b10f569-dcf7-4a5b-861a-ac2b117ff8b2" + "baa5e855-f563-41ee-b9ab-fe1c0eeef0ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211009Z:2b10f569-dcf7-4a5b-861a-ac2b117ff8b2" + "WESTUS:20210217T021844Z:baa5e855-f563-41ee-b9ab-fe1c0eeef0ba" ], "Date": [ - "Mon, 31 Aug 2020 21:10:09 GMT" + "Wed, 17 Feb 2021 02:18:43 GMT" ], "Content-Length": [ "282" @@ -6591,20 +7128,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6614,29 +7154,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11888" ], "x-ms-request-id": [ - "8b5e5fe2-3e48-47dd-927c-0bd8e72f1939" + "eac398b6-d442-45fe-8312-2b2d55d9466d" ], "x-ms-correlation-request-id": [ - "8b5e5fe2-3e48-47dd-927c-0bd8e72f1939" + "eac398b6-d442-45fe-8312-2b2d55d9466d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211029Z:8b5e5fe2-3e48-47dd-927c-0bd8e72f1939" + "WESTUS:20210217T021904Z:eac398b6-d442-45fe-8312-2b2d55d9466d" ], "Date": [ - "Mon, 31 Aug 2020 21:10:29 GMT" + "Wed, 17 Feb 2021 02:19:04 GMT" ], "Content-Length": [ "282" @@ -6648,20 +7189,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6671,29 +7215,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11887" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "11cb7cf6-8984-4a04-8728-b7011399014d" + "2090ad68-a57f-49a0-90d6-b125beb55c3c" ], "x-ms-correlation-request-id": [ - "11cb7cf6-8984-4a04-8728-b7011399014d" + "2090ad68-a57f-49a0-90d6-b125beb55c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211049Z:11cb7cf6-8984-4a04-8728-b7011399014d" + "WESTUS:20210217T021925Z:2090ad68-a57f-49a0-90d6-b125beb55c3c" ], "Date": [ - "Mon, 31 Aug 2020 21:10:49 GMT" + "Wed, 17 Feb 2021 02:19:24 GMT" ], "Content-Length": [ "282" @@ -6705,20 +7250,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fe500001-c548-4e2a-9016-7073cac25edf?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ZlNTAwMDAxLWM1NDgtNGUyYS05MDE2LTcwNzNjYWMyNWVkZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/a6020002-68ab-43e1-939c-15ddc4a557b0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2E2MDIwMDAyLTY4YWItNDNlMS05MzljLTE1ZGRjNGE1NTdiMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1d3d3f-e951-4205-b911-5ffa5142c65a" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6728,29 +7276,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11886" ], "x-ms-request-id": [ - "37cc7143-4d6f-42f6-8158-4a92d3b37780" + "3d264ef4-0af5-4c9c-a73a-d10e583a5a5b" ], "x-ms-correlation-request-id": [ - "37cc7143-4d6f-42f6-8158-4a92d3b37780" + "3d264ef4-0af5-4c9c-a73a-d10e583a5a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211109Z:37cc7143-4d6f-42f6-8158-4a92d3b37780" + "WESTUS:20210217T021945Z:3d264ef4-0af5-4c9c-a73a-d10e583a5a5b" ], "Date": [ - "Mon, 31 Aug 2020 21:11:09 GMT" + "Wed, 17 Feb 2021 02:19:45 GMT" ], "Content-Length": [ "294" @@ -6762,26 +7311,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe500001-c548-4e2a-9016-7073cac25edf\",\r\n \"startTime\": \"2020-08-31T20:46:23.2357805Z\",\r\n \"endTime\": \"2020-08-31T21:11:05.4593579Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6020002-68ab-43e1-939c-15ddc4a557b0\",\r\n \"startTime\": \"2021-02-17T01:56:29.6716213Z\",\r\n \"endTime\": \"2021-02-17T02:19:43.2154486Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczYzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM5Njg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczgxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM3NjM4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a510007b-5ad8-435e-96c7-a28cdbe392f7" + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6792,37 +7341,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-request-id": [ - "5f11bb3f-0c3e-440e-b981-c2d77e9b3513" + "0a481407-8c4e-44d8-8e44-bb9209034791" ], "x-ms-correlation-request-id": [ - "5f11bb3f-0c3e-440e-b981-c2d77e9b3513" + "0a481407-8c4e-44d8-8e44-bb9209034791" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211110Z:5f11bb3f-0c3e-440e-b981-c2d77e9b3513" + "WESTUS:20210217T021947Z:0a481407-8c4e-44d8-8e44-bb9209034791" ], "Date": [ - "Mon, 31 Aug 2020 21:11:09 GMT" + "Wed, 17 Feb 2021 02:19:47 GMT" ], "Content-Length": [ - "916" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6831,20 +7380,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps6381/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9684\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9684\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e831d563-dd21-4def-88ec-d44e3c26b82d\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9684\",\r\n \"fqdn\": \"sfmcps-ps9684.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"9DAE1D1ED7867661B2B1DA08561870AE6509A4BD\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8166/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps7638\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps7638\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterId\": \"3e49531d-ffb4-4dc3-92c4-f7499909d08a\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps7638\",\r\n \"fqdn\": \"sfmcps-ps7638.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"13.74.30.132\",\r\n \"clusterCertificateThumbprints\": [\r\n \"2C82C974425C711B2B8D65A4E0AB55122F64B457\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6854,29 +7406,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11884" ], "x-ms-request-id": [ - "ebdc25ca-abcb-4b4d-92b4-bd1bde983ece" + "f2c58597-367d-4a24-a889-8c165353d7cd" ], "x-ms-correlation-request-id": [ - "ebdc25ca-abcb-4b4d-92b4-bd1bde983ece" + "f2c58597-367d-4a24-a889-8c165353d7cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211130Z:ebdc25ca-abcb-4b4d-92b4-bd1bde983ece" + "WESTUS:20210217T022007Z:f2c58597-367d-4a24-a889-8c165353d7cd" ], "Date": [ - "Mon, 31 Aug 2020 21:11:29 GMT" + "Wed, 17 Feb 2021 02:20:07 GMT" ], "Content-Length": [ "282" @@ -6888,20 +7441,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6911,29 +7467,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11883" ], "x-ms-request-id": [ - "cf175a17-0b6b-4b7a-a2a2-d56dd272920a" + "e7404da7-79f1-4360-9b5f-fe2723e57cb9" ], "x-ms-correlation-request-id": [ - "cf175a17-0b6b-4b7a-a2a2-d56dd272920a" + "e7404da7-79f1-4360-9b5f-fe2723e57cb9" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211150Z:cf175a17-0b6b-4b7a-a2a2-d56dd272920a" + "WESTUS:20210217T022028Z:e7404da7-79f1-4360-9b5f-fe2723e57cb9" ], "Date": [ - "Mon, 31 Aug 2020 21:11:49 GMT" + "Wed, 17 Feb 2021 02:20:27 GMT" ], "Content-Length": [ "282" @@ -6945,20 +7502,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6968,29 +7528,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" + "11882" ], "x-ms-request-id": [ - "aa353c66-ea64-4019-8db5-af35e945cbfe" + "9f6d0ad3-d5fe-4cef-9a48-e5b704e0a360" ], "x-ms-correlation-request-id": [ - "aa353c66-ea64-4019-8db5-af35e945cbfe" + "9f6d0ad3-d5fe-4cef-9a48-e5b704e0a360" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211210Z:aa353c66-ea64-4019-8db5-af35e945cbfe" + "WESTUS:20210217T022048Z:9f6d0ad3-d5fe-4cef-9a48-e5b704e0a360" ], "Date": [ - "Mon, 31 Aug 2020 21:12:09 GMT" + "Wed, 17 Feb 2021 02:20:48 GMT" ], "Content-Length": [ "282" @@ -7002,20 +7563,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7025,29 +7589,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" ], "x-ms-request-id": [ - "d7701544-d474-4a76-bf2e-aa95998181eb" + "0f9a91e9-6c9b-4722-96fe-7837fae6fbc2" ], "x-ms-correlation-request-id": [ - "d7701544-d474-4a76-bf2e-aa95998181eb" + "0f9a91e9-6c9b-4722-96fe-7837fae6fbc2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211230Z:d7701544-d474-4a76-bf2e-aa95998181eb" + "WESTUS:20210217T022108Z:0f9a91e9-6c9b-4722-96fe-7837fae6fbc2" ], "Date": [ - "Mon, 31 Aug 2020 21:12:30 GMT" + "Wed, 17 Feb 2021 02:21:08 GMT" ], "Content-Length": [ "282" @@ -7059,20 +7624,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7082,29 +7650,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" + "11880" ], "x-ms-request-id": [ - "8f48a7d1-eb3a-4611-a9e2-af90603c86e6" + "d74e281a-208a-4d05-843e-ae5768f96949" ], "x-ms-correlation-request-id": [ - "8f48a7d1-eb3a-4611-a9e2-af90603c86e6" + "d74e281a-208a-4d05-843e-ae5768f96949" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211250Z:8f48a7d1-eb3a-4611-a9e2-af90603c86e6" + "WESTUS:20210217T022128Z:d74e281a-208a-4d05-843e-ae5768f96949" ], "Date": [ - "Mon, 31 Aug 2020 21:12:50 GMT" + "Wed, 17 Feb 2021 02:21:28 GMT" ], "Content-Length": [ "282" @@ -7116,20 +7685,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7139,29 +7711,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" + "11879" ], "x-ms-request-id": [ - "ef4f900a-5b28-4563-ac22-490499c9997d" + "01cf9647-6287-4f75-9748-f48bb49791af" ], "x-ms-correlation-request-id": [ - "ef4f900a-5b28-4563-ac22-490499c9997d" + "01cf9647-6287-4f75-9748-f48bb49791af" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211310Z:ef4f900a-5b28-4563-ac22-490499c9997d" + "WESTUS:20210217T022148Z:01cf9647-6287-4f75-9748-f48bb49791af" ], "Date": [ - "Mon, 31 Aug 2020 21:13:10 GMT" + "Wed, 17 Feb 2021 02:21:48 GMT" ], "Content-Length": [ "282" @@ -7173,20 +7746,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7196,29 +7772,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" + "11878" ], "x-ms-request-id": [ - "fcccf7a1-7f17-4ff9-9bd0-751d0cd9e244" + "355227dc-fdf0-42ec-a7c8-2fca48660620" ], "x-ms-correlation-request-id": [ - "fcccf7a1-7f17-4ff9-9bd0-751d0cd9e244" + "355227dc-fdf0-42ec-a7c8-2fca48660620" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211330Z:fcccf7a1-7f17-4ff9-9bd0-751d0cd9e244" + "WESTUS:20210217T022209Z:355227dc-fdf0-42ec-a7c8-2fca48660620" ], "Date": [ - "Mon, 31 Aug 2020 21:13:30 GMT" + "Wed, 17 Feb 2021 02:22:08 GMT" ], "Content-Length": [ "282" @@ -7230,20 +7807,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7253,29 +7833,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "11877" ], "x-ms-request-id": [ - "e5c1f06e-b365-4fe3-9c57-a902db128ad2" + "7834fdee-00e4-4c94-a554-4e33e9d0be7f" ], "x-ms-correlation-request-id": [ - "e5c1f06e-b365-4fe3-9c57-a902db128ad2" + "7834fdee-00e4-4c94-a554-4e33e9d0be7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211351Z:e5c1f06e-b365-4fe3-9c57-a902db128ad2" + "WESTUS:20210217T022229Z:7834fdee-00e4-4c94-a554-4e33e9d0be7f" ], "Date": [ - "Mon, 31 Aug 2020 21:13:50 GMT" + "Wed, 17 Feb 2021 02:22:28 GMT" ], "Content-Length": [ "282" @@ -7287,20 +7868,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7310,29 +7894,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" + "11875" ], "x-ms-request-id": [ - "713e07a5-9d91-4820-98f2-6c3752fbf1cc" + "c07e4a37-2532-4d53-ab79-3ba7c807c8a8" ], "x-ms-correlation-request-id": [ - "713e07a5-9d91-4820-98f2-6c3752fbf1cc" + "c07e4a37-2532-4d53-ab79-3ba7c807c8a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211411Z:713e07a5-9d91-4820-98f2-6c3752fbf1cc" + "WESTUS:20210217T022249Z:c07e4a37-2532-4d53-ab79-3ba7c807c8a8" ], "Date": [ - "Mon, 31 Aug 2020 21:14:10 GMT" + "Wed, 17 Feb 2021 02:22:48 GMT" ], "Content-Length": [ "282" @@ -7344,20 +7929,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7367,29 +7955,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" + "11874" ], "x-ms-request-id": [ - "9646df04-4948-4e36-bb01-e12377eac4bc" + "698e5f45-cdd3-4df1-a956-33ec3772a589" ], "x-ms-correlation-request-id": [ - "9646df04-4948-4e36-bb01-e12377eac4bc" + "698e5f45-cdd3-4df1-a956-33ec3772a589" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211431Z:9646df04-4948-4e36-bb01-e12377eac4bc" + "WESTUS:20210217T022309Z:698e5f45-cdd3-4df1-a956-33ec3772a589" ], "Date": [ - "Mon, 31 Aug 2020 21:14:31 GMT" + "Wed, 17 Feb 2021 02:23:08 GMT" ], "Content-Length": [ "282" @@ -7401,20 +7990,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7424,29 +8016,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "11873" ], "x-ms-request-id": [ - "5ad2753d-8343-4f6c-9368-d909ff00c4cb" + "6b9a4b7d-16f1-4ce0-8ccd-bd69091aad39" ], "x-ms-correlation-request-id": [ - "5ad2753d-8343-4f6c-9368-d909ff00c4cb" + "6b9a4b7d-16f1-4ce0-8ccd-bd69091aad39" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211451Z:5ad2753d-8343-4f6c-9368-d909ff00c4cb" + "WESTUS:20210217T022329Z:6b9a4b7d-16f1-4ce0-8ccd-bd69091aad39" ], "Date": [ - "Mon, 31 Aug 2020 21:14:51 GMT" + "Wed, 17 Feb 2021 02:23:28 GMT" ], "Content-Length": [ "282" @@ -7458,20 +8051,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7481,29 +8077,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" + "11871" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f9fd87af-542b-48a2-a48e-cffb7b1cbb07" + "993c4362-7b9f-4081-b3e9-473de0e387ba" ], "x-ms-correlation-request-id": [ - "f9fd87af-542b-48a2-a48e-cffb7b1cbb07" + "993c4362-7b9f-4081-b3e9-473de0e387ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211511Z:f9fd87af-542b-48a2-a48e-cffb7b1cbb07" + "WESTUS:20210217T022349Z:993c4362-7b9f-4081-b3e9-473de0e387ba" ], "Date": [ - "Mon, 31 Aug 2020 21:15:11 GMT" + "Wed, 17 Feb 2021 02:23:49 GMT" ], "Content-Length": [ "282" @@ -7515,20 +8112,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7538,29 +8138,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11705" + "11869" ], "x-ms-request-id": [ - "adbb2267-1c47-45ce-9ad0-060b5b0ac836" + "16b44837-8421-4256-9103-3d495ff43c27" ], "x-ms-correlation-request-id": [ - "adbb2267-1c47-45ce-9ad0-060b5b0ac836" + "16b44837-8421-4256-9103-3d495ff43c27" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211531Z:adbb2267-1c47-45ce-9ad0-060b5b0ac836" + "WESTUS:20210217T022410Z:16b44837-8421-4256-9103-3d495ff43c27" ], "Date": [ - "Mon, 31 Aug 2020 21:15:31 GMT" + "Wed, 17 Feb 2021 02:24:09 GMT" ], "Content-Length": [ "282" @@ -7572,20 +8173,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7595,29 +8199,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" + "11868" ], "x-ms-request-id": [ - "b1c50c34-ac5d-41b5-9bf3-0e7ee8c2ac43" + "00a891b5-06b1-43f0-aeb6-e4c2e51c5638" ], "x-ms-correlation-request-id": [ - "b1c50c34-ac5d-41b5-9bf3-0e7ee8c2ac43" + "00a891b5-06b1-43f0-aeb6-e4c2e51c5638" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211551Z:b1c50c34-ac5d-41b5-9bf3-0e7ee8c2ac43" + "WESTUS:20210217T022430Z:00a891b5-06b1-43f0-aeb6-e4c2e51c5638" ], "Date": [ - "Mon, 31 Aug 2020 21:15:51 GMT" + "Wed, 17 Feb 2021 02:24:29 GMT" ], "Content-Length": [ "282" @@ -7629,20 +8234,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7652,29 +8260,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11702" + "11867" ], "x-ms-request-id": [ - "583ce77b-d9fa-4e32-8ec1-f39b210b579d" + "3c32f24a-133c-4a41-81cf-0cd9922ae01f" ], "x-ms-correlation-request-id": [ - "583ce77b-d9fa-4e32-8ec1-f39b210b579d" + "3c32f24a-133c-4a41-81cf-0cd9922ae01f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211611Z:583ce77b-d9fa-4e32-8ec1-f39b210b579d" + "WESTUS:20210217T022450Z:3c32f24a-133c-4a41-81cf-0cd9922ae01f" ], "Date": [ - "Mon, 31 Aug 2020 21:16:11 GMT" + "Wed, 17 Feb 2021 02:24:49 GMT" ], "Content-Length": [ "282" @@ -7686,20 +8295,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7709,29 +8321,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" + "11866" ], "x-ms-request-id": [ - "13254a14-2f18-40c9-b00f-ad5d22693058" + "4c5bfc38-5460-4ec9-85c0-d7137cdca3fc" ], "x-ms-correlation-request-id": [ - "13254a14-2f18-40c9-b00f-ad5d22693058" + "4c5bfc38-5460-4ec9-85c0-d7137cdca3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211631Z:13254a14-2f18-40c9-b00f-ad5d22693058" + "WESTUS:20210217T022510Z:4c5bfc38-5460-4ec9-85c0-d7137cdca3fc" ], "Date": [ - "Mon, 31 Aug 2020 21:16:31 GMT" + "Wed, 17 Feb 2021 02:25:09 GMT" ], "Content-Length": [ "282" @@ -7743,20 +8356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7766,29 +8382,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" + "11865" ], "x-ms-request-id": [ - "8ac27d51-45c9-45d9-b628-bcd6dccd5fc6" + "88769fef-5c02-47e8-8f5d-2d18a1f9cdf5" ], "x-ms-correlation-request-id": [ - "8ac27d51-45c9-45d9-b628-bcd6dccd5fc6" + "88769fef-5c02-47e8-8f5d-2d18a1f9cdf5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211651Z:8ac27d51-45c9-45d9-b628-bcd6dccd5fc6" + "WESTUS:20210217T022530Z:88769fef-5c02-47e8-8f5d-2d18a1f9cdf5" ], "Date": [ - "Mon, 31 Aug 2020 21:16:50 GMT" + "Wed, 17 Feb 2021 02:25:30 GMT" ], "Content-Length": [ "282" @@ -7800,20 +8417,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7823,32 +8443,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11694" + "11864" ], "x-ms-request-id": [ - "600819d8-0f37-4efa-9f0c-d58cd159d1e0" + "ed17b706-df12-4438-8de5-7f10423cfc73" ], "x-ms-correlation-request-id": [ - "600819d8-0f37-4efa-9f0c-d58cd159d1e0" + "ed17b706-df12-4438-8de5-7f10423cfc73" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211711Z:600819d8-0f37-4efa-9f0c-d58cd159d1e0" + "WESTUS:20210217T022550Z:ed17b706-df12-4438-8de5-7f10423cfc73" ], "Date": [ - "Mon, 31 Aug 2020 21:17:11 GMT" + "Wed, 17 Feb 2021 02:25:50 GMT" ], "Content-Length": [ - "294" + "293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7857,20 +8478,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d5250001-8a96-4b1e-a8ed-c00d8e0383b3\",\r\n \"startTime\": \"2020-08-31T21:11:10.2636981Z\",\r\n \"endTime\": \"2020-08-31T21:17:11.0122183Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"f2ae0002-3e81-4356-b39b-096e8b31c004\",\r\n \"startTime\": \"2021-02-17T02:19:47.6060787Z\",\r\n \"endTime\": \"2021-02-17T02:25:48.663982Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/d5250001-8a96-4b1e-a8ed-c00d8e0383b3?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2Q1MjUwMDAxLThhOTYtNGIxZS1hOGVkLWMwMGQ4ZTAzODNiMz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/f2ae0002-3e81-4356-b39b-096e8b31c004?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2YyYWUwMDAyLTNlODEtNDM1Ni1iMzliLTA5NmU4YjMxYzAwND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e51bf009-be9f-4701-81c7-b47a8c28a1f9" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7880,29 +8504,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" + "11863" ], "x-ms-request-id": [ - "cbc14d35-51fc-412a-b37b-04b06fdc4b36" + "92a813b6-930e-4704-a317-331a2e06d7d0" ], "x-ms-correlation-request-id": [ - "cbc14d35-51fc-412a-b37b-04b06fdc4b36" + "92a813b6-930e-4704-a317-331a2e06d7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T211712Z:cbc14d35-51fc-412a-b37b-04b06fdc4b36" + "WESTUS:20210217T022551Z:92a813b6-930e-4704-a317-331a2e06d7d0" ], "Date": [ - "Mon, 31 Aug 2020 21:17:12 GMT" + "Wed, 17 Feb 2021 02:25:50 GMT" ], "Expires": [ "-1" @@ -7914,8 +8539,8 @@ ], "Names": { "Test-CreateBasicCluster": [ - "ps6381", - "ps9684" + "ps8166", + "ps7638" ] }, "Variables": { diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestNodeTypeOperations.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestNodeTypeOperations.json index dbdb967b84c9..e01fbfed8621 100644 --- a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestNodeTypeOperations.json +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersTests/TestNodeTypeOperations.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bce06111-fd9a-4468-af20-2ca0c4e59e8c" + "ab3f10d3-753a-4a4d-bee9-cc0e36450c1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "gateway" ], "x-ms-request-id": [ - "490361dc-cbe9-445c-ab72-8204870a4243" + "6985b287-3cbd-40ae-af0d-44ff39ebea43" ], "x-ms-correlation-request-id": [ - "490361dc-cbe9-445c-ab72-8204870a4243" + "6985b287-3cbd-40ae-af0d-44ff39ebea43" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225106Z:490361dc-cbe9-445c-ab72-8204870a4243" + "WESTCENTRALUS:20210217T042408Z:6985b287-3cbd-40ae-af0d-44ff39ebea43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 22:51:06 GMT" + "Wed, 17 Feb 2021 04:24:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps1311' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8559' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a62d42ff-64b7-41d7-b9c5-897aecf10c38" + "4230fdb4-04bb-48bc-bba4-09ff1337209f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "gateway" ], "x-ms-request-id": [ - "ba44fc13-b17a-4527-a390-493346745362" + "01341ecf-f8ab-4911-80fe-f8b202c8f5c0" ], "x-ms-correlation-request-id": [ - "ba44fc13-b17a-4527-a390-493346745362" + "01341ecf-f8ab-4911-80fe-f8b202c8f5c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225106Z:ba44fc13-b17a-4527-a390-493346745362" + "WESTCENTRALUS:20210217T042409Z:01341ecf-f8ab-4911-80fe-f8b202c8f5c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 22:51:06 GMT" + "Wed, 17 Feb 2021 04:24:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,20 +117,23 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps1311' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8559' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -147,25 +150,26 @@ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11975" ], "x-ms-request-id": [ - "62e3c357-9404-452b-8617-564692f7fadc" + "2b7c11fd-9d2d-4929-9aab-741c0bf185bf" ], "x-ms-correlation-request-id": [ - "62e3c357-9404-452b-8617-564692f7fadc" + "2b7c11fd-9d2d-4929-9aab-741c0bf185bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225351Z:62e3c357-9404-452b-8617-564692f7fadc" + "WESTCENTRALUS:20210217T042719Z:2b7c11fd-9d2d-4929-9aab-741c0bf185bf" ], "Date": [ - "Mon, 31 Aug 2020 22:53:50 GMT" + "Wed, 17 Feb 2021 04:27:18 GMT" ], "Content-Length": [ - "960" + "1074" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,26 +178,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8384\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e46dc795-0a4d-4aa5-a843-bdd16aa7387d\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8384\",\r\n \"fqdn\": \"sfmcps-ps8384.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"E9702F24C59E56853BDDBE9F88F04699A8A0AD50\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps3793\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9472f8dd-f2b4-493e-8349-0408d5afca7e\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps3793\",\r\n \"fqdn\": \"sfmcps-ps3793.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"51.104.142.250\",\r\n \"clusterCertificateThumbprints\": [\r\n \"CFD2AEF2ED64511F574C186AF8BDC5F4C6F70584\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczEzMTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczg1NTk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4329d11-680b-4d34-b366-ddcae0867fce" + "4230fdb4-04bb-48bc-bba4-09ff1337209f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -207,16 +211,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-request-id": [ - "7c84b520-fa24-4f05-9df2-52d8406f2155" + "b25b86b7-7f02-44a3-a78b-aeeb29d5307e" ], "x-ms-correlation-request-id": [ - "7c84b520-fa24-4f05-9df2-52d8406f2155" + "b25b86b7-7f02-44a3-a78b-aeeb29d5307e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225107Z:7c84b520-fa24-4f05-9df2-52d8406f2155" + "WESTCENTRALUS:20210217T042409Z:b25b86b7-7f02-44a3-a78b-aeeb29d5307e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,7 +229,7 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 22:51:06 GMT" + "Wed, 17 Feb 2021 04:24:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,32 +241,32 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps1311' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps8559' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczEzMTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczg1NTk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"northeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8a7bcd8-90f6-49b6-a3b0-e1d6d74ddb33" + "4230fdb4-04bb-48bc-bba4-09ff1337209f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "33" ] }, "ResponseHeaders": { @@ -276,13 +280,13 @@ "1199" ], "x-ms-request-id": [ - "9a61dcbe-3dc8-4452-bbaa-942cb8fa7de9" + "a5deaf5e-b897-44ed-95d6-ffcf0e447392" ], "x-ms-correlation-request-id": [ - "9a61dcbe-3dc8-4452-bbaa-942cb8fa7de9" + "a5deaf5e-b897-44ed-95d6-ffcf0e447392" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225108Z:9a61dcbe-3dc8-4452-bbaa-942cb8fa7de9" + "WESTCENTRALUS:20210217T042410Z:a5deaf5e-b897-44ed-95d6-ffcf0e447392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +295,10 @@ "nosniff" ], "Date": [ - "Mon, 31 Aug 2020 22:51:07 GMT" + "Wed, 17 Feb 2021 04:24:10 GMT" ], "Content-Length": [ - "193" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,32 +307,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311\",\r\n \"name\": \"sfmcps-rg-ps1311\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559\",\r\n \"name\": \"sfmcps-rg-ps8559\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps8384\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"useTestExtension\": false,\r\n \"clusterUpgradeMode\": \"Automatic\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps3793\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"northeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7959a70b-fbaf-4195-85a7-4592cd4b3cfa" + "4230fdb4-04bb-48bc-bba4-09ff1337209f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "495" + "420" ] }, "ResponseHeaders": { @@ -342,31 +346,31 @@ "nosniff" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "de1a81a7-6ac2-4311-9384-90ad7990fdef" + "082ce74e-0bad-4832-b474-f55643243067" ], "x-ms-correlation-request-id": [ - "de1a81a7-6ac2-4311-9384-90ad7990fdef" + "082ce74e-0bad-4832-b474-f55643243067" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225110Z:de1a81a7-6ac2-4311-9384-90ad7990fdef" + "WESTCENTRALUS:20210217T042417Z:082ce74e-0bad-4832-b474-f55643243067" ], "Date": [ - "Mon, 31 Aug 2020 22:51:09 GMT" + "Wed, 17 Feb 2021 04:24:16 GMT" ], "Content-Length": [ - "774" + "896" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,20 +379,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8384\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e46dc795-0a4d-4aa5-a843-bdd16aa7387d\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8384\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps3793\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"9472f8dd-f2b4-493e-8349-0408d5afca7e\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps3793\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -398,29 +405,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-request-id": [ - "049ce143-ac10-430a-9c11-ef980dbbad47" + "996bde16-afe9-405a-a5aa-f1f9ad2bc298" ], "x-ms-correlation-request-id": [ - "049ce143-ac10-430a-9c11-ef980dbbad47" + "996bde16-afe9-405a-a5aa-f1f9ad2bc298" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225130Z:049ce143-ac10-430a-9c11-ef980dbbad47" + "WESTCENTRALUS:20210217T042437Z:996bde16-afe9-405a-a5aa-f1f9ad2bc298" ], "Date": [ - "Mon, 31 Aug 2020 22:51:29 GMT" + "Wed, 17 Feb 2021 04:24:36 GMT" ], "Content-Length": [ "282" @@ -432,20 +440,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -455,29 +466,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-request-id": [ - "b4c7af54-983d-48f0-b871-2ea2fba2bfb3" + "59bbf7e4-c598-41ac-89a9-96816fcdb721" ], "x-ms-correlation-request-id": [ - "b4c7af54-983d-48f0-b871-2ea2fba2bfb3" + "59bbf7e4-c598-41ac-89a9-96816fcdb721" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225150Z:b4c7af54-983d-48f0-b871-2ea2fba2bfb3" + "WESTCENTRALUS:20210217T042457Z:59bbf7e4-c598-41ac-89a9-96816fcdb721" ], "Date": [ - "Mon, 31 Aug 2020 22:51:50 GMT" + "Wed, 17 Feb 2021 04:24:56 GMT" ], "Content-Length": [ "282" @@ -489,20 +501,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -512,29 +527,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-request-id": [ - "56e45aaa-9f1b-4410-a87f-28ca6cc535d1" + "88cece13-21b9-4e81-ad74-567401d74dc1" ], "x-ms-correlation-request-id": [ - "56e45aaa-9f1b-4410-a87f-28ca6cc535d1" + "88cece13-21b9-4e81-ad74-567401d74dc1" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225210Z:56e45aaa-9f1b-4410-a87f-28ca6cc535d1" + "WESTCENTRALUS:20210217T042517Z:88cece13-21b9-4e81-ad74-567401d74dc1" ], "Date": [ - "Mon, 31 Aug 2020 22:52:10 GMT" + "Wed, 17 Feb 2021 04:25:16 GMT" ], "Content-Length": [ "282" @@ -546,20 +562,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -569,29 +588,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11981" ], "x-ms-request-id": [ - "2c8053b8-af97-430f-bfe3-156ab75308c6" + "c5b4b9c8-8b95-4e1f-b1fa-1f72af04c782" ], "x-ms-correlation-request-id": [ - "2c8053b8-af97-430f-bfe3-156ab75308c6" + "c5b4b9c8-8b95-4e1f-b1fa-1f72af04c782" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225231Z:2c8053b8-af97-430f-bfe3-156ab75308c6" + "WESTCENTRALUS:20210217T042538Z:c5b4b9c8-8b95-4e1f-b1fa-1f72af04c782" ], "Date": [ - "Mon, 31 Aug 2020 22:52:30 GMT" + "Wed, 17 Feb 2021 04:25:37 GMT" ], "Content-Length": [ "282" @@ -603,20 +623,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -626,29 +649,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11980" ], "x-ms-request-id": [ - "6c5e4402-386f-43a2-a00b-a72df4542c2f" + "daff4365-5ea9-42c3-99e8-5acbc992a369" ], "x-ms-correlation-request-id": [ - "6c5e4402-386f-43a2-a00b-a72df4542c2f" + "daff4365-5ea9-42c3-99e8-5acbc992a369" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225251Z:6c5e4402-386f-43a2-a00b-a72df4542c2f" + "WESTCENTRALUS:20210217T042558Z:daff4365-5ea9-42c3-99e8-5acbc992a369" ], "Date": [ - "Mon, 31 Aug 2020 22:52:50 GMT" + "Wed, 17 Feb 2021 04:25:58 GMT" ], "Content-Length": [ "282" @@ -660,20 +684,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -683,29 +710,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11979" ], "x-ms-request-id": [ - "bbc67798-1089-4396-bf0e-a26e6a3c4dcb" + "933500e2-7a22-47f5-8918-166574414325" ], "x-ms-correlation-request-id": [ - "bbc67798-1089-4396-bf0e-a26e6a3c4dcb" + "933500e2-7a22-47f5-8918-166574414325" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225311Z:bbc67798-1089-4396-bf0e-a26e6a3c4dcb" + "WESTCENTRALUS:20210217T042618Z:933500e2-7a22-47f5-8918-166574414325" ], "Date": [ - "Mon, 31 Aug 2020 22:53:10 GMT" + "Wed, 17 Feb 2021 04:26:18 GMT" ], "Content-Length": [ "282" @@ -717,20 +745,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -740,29 +771,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11978" ], "x-ms-request-id": [ - "a0bffcaf-a5b3-4864-ad36-71fde6d26d27" + "415b5bd1-6cc3-471d-acef-ecb860b6341b" ], "x-ms-correlation-request-id": [ - "a0bffcaf-a5b3-4864-ad36-71fde6d26d27" + "415b5bd1-6cc3-471d-acef-ecb860b6341b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225331Z:a0bffcaf-a5b3-4864-ad36-71fde6d26d27" + "WESTCENTRALUS:20210217T042638Z:415b5bd1-6cc3-471d-acef-ecb860b6341b" ], "Date": [ - "Mon, 31 Aug 2020 22:53:30 GMT" + "Wed, 17 Feb 2021 04:26:38 GMT" ], "Content-Length": [ "282" @@ -774,20 +806,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e9ee0001-83bb-4654-87f0-0fd0dee4a32f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U5ZWUwMDAxLTgzYmItNDY1NC04N2YwLTBmZDBkZWU0YTMyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -797,29 +832,91 @@ "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "6139ea08-d76f-4f5f-a285-8351b069e4e8" + ], + "x-ms-correlation-request-id": [ + "6139ea08-d76f-4f5f-a285-8351b069e4e8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210217T042658Z:6139ea08-d76f-4f5f-a285-8351b069e4e8" + ], + "Date": [ + "Wed, 17 Feb 2021 04:26:58 GMT" + ], + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/93840005-7887-4003-83f3-29a2ac8a1d84?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzkzODQwMDA1LTc4ODctNDAwMy04M2YzLTI5YTJhYzhhMWQ4ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4230fdb4-04bb-48bc-bba4-09ff1337209f" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11976" ], "x-ms-request-id": [ - "f4851b9d-c06c-4a0a-bac4-0203f1dbd6f7" + "de59a009-c1d8-4e72-b14a-4eee86737622" ], "x-ms-correlation-request-id": [ - "f4851b9d-c06c-4a0a-bac4-0203f1dbd6f7" + "de59a009-c1d8-4e72-b14a-4eee86737622" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225351Z:f4851b9d-c06c-4a0a-bac4-0203f1dbd6f7" + "WESTCENTRALUS:20210217T042718Z:de59a009-c1d8-4e72-b14a-4eee86737622" ], "Date": [ - "Mon, 31 Aug 2020 22:53:50 GMT" + "Wed, 17 Feb 2021 04:27:18 GMT" ], "Content-Length": [ "294" @@ -831,26 +928,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e9ee0001-83bb-4654-87f0-0fd0dee4a32f\",\r\n \"startTime\": \"2020-08-31T22:51:09.8484007Z\",\r\n \"endTime\": \"2020-08-31T22:53:44.8293128Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"93840005-7887-4003-83f3-29a2ac8a1d84\",\r\n \"startTime\": \"2021-02-17T04:24:16.2005309Z\",\r\n \"endTime\": \"2021-02-17T04:27:16.4315311Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66c2aa88-7837-4b97-a7d1-c72011ee1be9" + "4d28b89f-88d1-4f7d-bfbf-84ed7bcb7639" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -860,9 +957,6 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "9e0d5cf6-2972-45b9-afdc-d63202ca2adb" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -870,19 +964,23 @@ "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11974" + ], + "x-ms-request-id": [ + "1f3e23a8-760d-49f8-8f3a-c2b361251f99" ], "x-ms-correlation-request-id": [ - "e2650b8b-8b38-4452-b131-b8637cdc89d5" + "1f3e23a8-760d-49f8-8f3a-c2b361251f99" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225351Z:e2650b8b-8b38-4452-b131-b8637cdc89d5" + "WESTCENTRALUS:20210217T042719Z:1f3e23a8-760d-49f8-8f3a-c2b361251f99" ], "Date": [ - "Mon, 31 Aug 2020 22:53:51 GMT" + "Wed, 17 Feb 2021 04:27:18 GMT" ], "Content-Length": [ "139" @@ -894,20 +992,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData e46dc795-0a4d-4aa5-a843-bdd16aa7387d_pnt could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData 9472f8dd-f2b4-493e-8349-0408d5afca7e_pnt could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -917,29 +1015,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11957" ], "x-ms-request-id": [ - "4ff526cb-add5-4754-87da-0e2f52fb50a0" + "5e85ae19-55a8-4f24-a9aa-53d23a33f8bb" ], "x-ms-correlation-request-id": [ - "4ff526cb-add5-4754-87da-0e2f52fb50a0" + "5e85ae19-55a8-4f24-a9aa-53d23a33f8bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230134Z:4ff526cb-add5-4754-87da-0e2f52fb50a0" + "WESTUS:20210217T043525Z:5e85ae19-55a8-4f24-a9aa-53d23a33f8bb" ], "Date": [ - "Mon, 31 Aug 2020 23:01:33 GMT" + "Wed, 17 Feb 2021 04:35:24 GMT" ], "Content-Length": [ "694" @@ -951,26 +1050,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b92091-8cbf-4c89-809d-f69c9a751839" + "dd26f33b-124f-4454-b8a8-3f64af8fc10e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -980,9 +1079,6 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "01b34056-7171-4417-a366-00c1b50f0cbc" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -990,19 +1086,23 @@ "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" + ], + "x-ms-request-id": [ + "c14771f3-028f-45ff-87e5-80ebb7d9756f" ], "x-ms-correlation-request-id": [ - "3e301c71-5c0c-4ab0-ac66-e409853d46a2" + "c14771f3-028f-45ff-87e5-80ebb7d9756f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225351Z:3e301c71-5c0c-4ab0-ac66-e409853d46a2" + "WESTUS:20210217T042719Z:c14771f3-028f-45ff-87e5-80ebb7d9756f" ], "Date": [ - "Mon, 31 Aug 2020 22:53:50 GMT" + "Wed, 17 Feb 2021 04:27:19 GMT" ], "Content-Length": [ "139" @@ -1014,20 +1114,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData e46dc795-0a4d-4aa5-a843-bdd16aa7387d_snt could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData 9472f8dd-f2b4-493e-8349-0408d5afca7e_snt could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1037,29 +1137,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11961" ], "x-ms-request-id": [ - "5467b65a-a8f4-404b-a3f4-803a3a084b00" + "b4997e66-17da-434f-b055-825ef648a3bb" ], "x-ms-correlation-request-id": [ - "5467b65a-a8f4-404b-a3f4-803a3a084b00" + "b4997e66-17da-434f-b055-825ef648a3bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230315Z:5467b65a-a8f4-404b-a3f4-803a3a084b00" + "WESTUS:20210217T043504Z:b4997e66-17da-434f-b055-825ef648a3bb" ], "Date": [ - "Mon, 31 Aug 2020 23:03:14 GMT" + "Wed, 17 Feb 2021 04:35:03 GMT" ], "Content-Length": [ "695" @@ -1071,26 +1172,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5344d9fd-3fdd-4b96-9fc6-3ea43c40c21f" + "c2efbfbc-75fd-4b35-b13e-01331b6e7005" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1100,29 +1201,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11894" ], "x-ms-request-id": [ - "a1843833-633c-4dc6-93f0-cde101c66246" + "4a40d75b-16df-4fd3-9bdb-3445db3c4a53" ], "x-ms-correlation-request-id": [ - "a1843833-633c-4dc6-93f0-cde101c66246" + "4a40d75b-16df-4fd3-9bdb-3445db3c4a53" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231708Z:a1843833-633c-4dc6-93f0-cde101c66246" + "WESTUS:20210217T045411Z:4a40d75b-16df-4fd3-9bdb-3445db3c4a53" ], "Date": [ - "Mon, 31 Aug 2020 23:17:07 GMT" + "Wed, 17 Feb 2021 04:54:11 GMT" ], "Content-Length": [ "695" @@ -1134,32 +1236,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/pnt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d2edf82a-26e8-418f-8752-0a12cf3ac6d4" + "3f71bf63-9cc2-444e-a371-5e0a17d23688" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "296" + "299" ] }, "ResponseHeaders": { @@ -1170,31 +1272,32 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "c6f82cd9-ed42-4b78-b7fa-5902b5e0c7d2" + "aade7846-e079-48a7-a74f-1d2fd67421e0" ], "x-ms-correlation-request-id": [ - "c6f82cd9-ed42-4b78-b7fa-5902b5e0c7d2" + "aade7846-e079-48a7-a74f-1d2fd67421e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225352Z:c6f82cd9-ed42-4b78-b7fa-5902b5e0c7d2" + "WESTCENTRALUS:20210217T042720Z:aade7846-e079-48a7-a74f-1d2fd67421e0" ], "Date": [ - "Mon, 31 Aug 2020 22:53:51 GMT" + "Wed, 17 Feb 2021 04:27:19 GMT" ], "Content-Length": [ "693" @@ -1206,32 +1309,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25b6cfa4-b8c7-472c-a954-c2b6892e17b0" + "24fd70e2-3d5e-4588-9d3c-d298bb47f886" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "297" + "300" ] }, "ResponseHeaders": { @@ -1242,31 +1345,32 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "9a9049f3-1841-45e9-8be5-e79b44bc47a8" + "5c81874d-cf47-48cd-8cf7-a802adde1992" ], "x-ms-correlation-request-id": [ - "9a9049f3-1841-45e9-8be5-e79b44bc47a8" + "5c81874d-cf47-48cd-8cf7-a802adde1992" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225352Z:9a9049f3-1841-45e9-8be5-e79b44bc47a8" + "WESTUS:20210217T042720Z:5c81874d-cf47-48cd-8cf7-a802adde1992" ], "Date": [ - "Mon, 31 Aug 2020 22:53:51 GMT" + "Wed, 17 Feb 2021 04:27:19 GMT" ], "Content-Length": [ "694" @@ -1278,20 +1382,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1301,29 +1405,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "39824e88-da19-496d-84b1-f955ff6aae5f" + "2acadead-4fab-4a23-9cbb-136de1974e49" ], "x-ms-correlation-request-id": [ - "39824e88-da19-496d-84b1-f955ff6aae5f" + "2acadead-4fab-4a23-9cbb-136de1974e49" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225412Z:39824e88-da19-496d-84b1-f955ff6aae5f" + "WESTUS:20210217T042740Z:2acadead-4fab-4a23-9cbb-136de1974e49" ], "Date": [ - "Mon, 31 Aug 2020 22:54:12 GMT" + "Wed, 17 Feb 2021 04:27:39 GMT" ], "Content-Length": [ "282" @@ -1335,20 +1440,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1358,29 +1463,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11972" ], "x-ms-request-id": [ - "37de76fe-344a-4ec0-b662-5db590939ee5" + "8b190284-6225-43c2-b4b2-58743fd94c65" ], "x-ms-correlation-request-id": [ - "37de76fe-344a-4ec0-b662-5db590939ee5" + "8b190284-6225-43c2-b4b2-58743fd94c65" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225432Z:37de76fe-344a-4ec0-b662-5db590939ee5" + "WESTCENTRALUS:20210217T042800Z:8b190284-6225-43c2-b4b2-58743fd94c65" ], "Date": [ - "Mon, 31 Aug 2020 22:54:32 GMT" + "Wed, 17 Feb 2021 04:27:59 GMT" ], "Content-Length": [ "282" @@ -1392,20 +1498,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1415,29 +1521,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11990" ], "x-ms-request-id": [ - "8b199966-6de0-4b17-be0e-e841e8fa23f1" + "081309ae-285f-407f-b7cc-665fb9737195" ], "x-ms-correlation-request-id": [ - "8b199966-6de0-4b17-be0e-e841e8fa23f1" + "081309ae-285f-407f-b7cc-665fb9737195" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225452Z:8b199966-6de0-4b17-be0e-e841e8fa23f1" + "WESTUS:20210217T042820Z:081309ae-285f-407f-b7cc-665fb9737195" ], "Date": [ - "Mon, 31 Aug 2020 22:54:52 GMT" + "Wed, 17 Feb 2021 04:28:19 GMT" ], "Content-Length": [ "282" @@ -1449,20 +1556,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1472,29 +1579,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11963" ], "x-ms-request-id": [ - "08b6cd2c-6e0c-4ed2-ae27-732a35725497" + "20eafa69-d2be-426b-bf33-545abdf9ffd0" ], "x-ms-correlation-request-id": [ - "08b6cd2c-6e0c-4ed2-ae27-732a35725497" + "20eafa69-d2be-426b-bf33-545abdf9ffd0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225512Z:08b6cd2c-6e0c-4ed2-ae27-732a35725497" + "WESTCENTRALUS:20210217T042840Z:20eafa69-d2be-426b-bf33-545abdf9ffd0" ], "Date": [ - "Mon, 31 Aug 2020 22:55:12 GMT" + "Wed, 17 Feb 2021 04:28:39 GMT" ], "Content-Length": [ "282" @@ -1506,20 +1614,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1529,29 +1637,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11988" ], "x-ms-request-id": [ - "2d83b4fb-1802-499f-ac28-3333f70f3fe7" + "ed26b32c-492a-4103-a212-bf7c045a2869" ], "x-ms-correlation-request-id": [ - "2d83b4fb-1802-499f-ac28-3333f70f3fe7" + "ed26b32c-492a-4103-a212-bf7c045a2869" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225532Z:2d83b4fb-1802-499f-ac28-3333f70f3fe7" + "WESTUS:20210217T042900Z:ed26b32c-492a-4103-a212-bf7c045a2869" ], "Date": [ - "Mon, 31 Aug 2020 22:55:32 GMT" + "Wed, 17 Feb 2021 04:29:00 GMT" ], "Content-Length": [ "282" @@ -1563,20 +1672,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1586,29 +1695,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11950" ], "x-ms-request-id": [ - "54e99146-e9d2-47cf-b1f6-15ad877fbbc9" + "7428e25d-107f-4e9f-b391-09cba0142956" ], "x-ms-correlation-request-id": [ - "54e99146-e9d2-47cf-b1f6-15ad877fbbc9" + "7428e25d-107f-4e9f-b391-09cba0142956" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225552Z:54e99146-e9d2-47cf-b1f6-15ad877fbbc9" + "WESTCENTRALUS:20210217T042921Z:7428e25d-107f-4e9f-b391-09cba0142956" ], "Date": [ - "Mon, 31 Aug 2020 22:55:51 GMT" + "Wed, 17 Feb 2021 04:29:20 GMT" ], "Content-Length": [ "282" @@ -1620,20 +1730,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1643,29 +1753,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11986" ], "x-ms-request-id": [ - "8d752c7a-f239-4ec2-b111-1b1bf9315867" + "7267cd52-f71c-46a2-ac89-e8c983528a72" ], "x-ms-correlation-request-id": [ - "8d752c7a-f239-4ec2-b111-1b1bf9315867" + "7267cd52-f71c-46a2-ac89-e8c983528a72" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225612Z:8d752c7a-f239-4ec2-b111-1b1bf9315867" + "WESTUS:20210217T042941Z:7267cd52-f71c-46a2-ac89-e8c983528a72" ], "Date": [ - "Mon, 31 Aug 2020 22:56:11 GMT" + "Wed, 17 Feb 2021 04:29:40 GMT" ], "Content-Length": [ "282" @@ -1677,20 +1788,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1700,29 +1811,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11943" ], "x-ms-request-id": [ - "1f33f66a-9232-4ab2-97c3-5fb7291ded00" + "bc1ab2b2-12cf-430b-aa15-f9d027ca4c85" ], "x-ms-correlation-request-id": [ - "1f33f66a-9232-4ab2-97c3-5fb7291ded00" + "bc1ab2b2-12cf-430b-aa15-f9d027ca4c85" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225632Z:1f33f66a-9232-4ab2-97c3-5fb7291ded00" + "WESTCENTRALUS:20210217T043001Z:bc1ab2b2-12cf-430b-aa15-f9d027ca4c85" ], "Date": [ - "Mon, 31 Aug 2020 22:56:31 GMT" + "Wed, 17 Feb 2021 04:30:00 GMT" ], "Content-Length": [ "282" @@ -1734,20 +1846,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1757,29 +1869,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11984" ], "x-ms-request-id": [ - "4eef3ba3-08a4-4281-90f4-ce25c426ffbe" + "fbbc025e-dc85-45f6-b46d-74fe210bf872" ], "x-ms-correlation-request-id": [ - "4eef3ba3-08a4-4281-90f4-ce25c426ffbe" + "fbbc025e-dc85-45f6-b46d-74fe210bf872" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225652Z:4eef3ba3-08a4-4281-90f4-ce25c426ffbe" + "WESTUS:20210217T043021Z:fbbc025e-dc85-45f6-b46d-74fe210bf872" ], "Date": [ - "Mon, 31 Aug 2020 22:56:51 GMT" + "Wed, 17 Feb 2021 04:30:20 GMT" ], "Content-Length": [ "282" @@ -1791,20 +1904,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1814,29 +1927,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11940" ], "x-ms-request-id": [ - "5000a912-9d9d-4254-89d7-afbf239c64f1" + "3acb0b47-cf42-4d3c-bb26-326dccaa0aab" ], "x-ms-correlation-request-id": [ - "5000a912-9d9d-4254-89d7-afbf239c64f1" + "3acb0b47-cf42-4d3c-bb26-326dccaa0aab" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225712Z:5000a912-9d9d-4254-89d7-afbf239c64f1" + "WESTCENTRALUS:20210217T043041Z:3acb0b47-cf42-4d3c-bb26-326dccaa0aab" ], "Date": [ - "Mon, 31 Aug 2020 22:57:12 GMT" + "Wed, 17 Feb 2021 04:30:41 GMT" ], "Content-Length": [ "282" @@ -1848,20 +1962,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1871,29 +1985,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11982" ], "x-ms-request-id": [ - "2ff7ea08-da68-440e-b48f-64a4e28fd389" + "9291f608-b949-4af8-8ab2-116a1ca3d771" ], "x-ms-correlation-request-id": [ - "2ff7ea08-da68-440e-b48f-64a4e28fd389" + "9291f608-b949-4af8-8ab2-116a1ca3d771" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225733Z:2ff7ea08-da68-440e-b48f-64a4e28fd389" + "WESTUS:20210217T043101Z:9291f608-b949-4af8-8ab2-116a1ca3d771" ], "Date": [ - "Mon, 31 Aug 2020 22:57:32 GMT" + "Wed, 17 Feb 2021 04:31:01 GMT" ], "Content-Length": [ "282" @@ -1905,20 +2020,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1928,29 +2043,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" ], "x-ms-request-id": [ - "a6d37278-8c3f-47dc-8940-8986c026e71e" + "cfeb535b-3a4f-443b-b832-2be113a33d56" ], "x-ms-correlation-request-id": [ - "a6d37278-8c3f-47dc-8940-8986c026e71e" + "cfeb535b-3a4f-443b-b832-2be113a33d56" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225753Z:a6d37278-8c3f-47dc-8940-8986c026e71e" + "WESTCENTRALUS:20210217T043122Z:cfeb535b-3a4f-443b-b832-2be113a33d56" ], "Date": [ - "Mon, 31 Aug 2020 22:57:52 GMT" + "Wed, 17 Feb 2021 04:31:21 GMT" ], "Content-Length": [ "282" @@ -1962,20 +2078,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -1985,29 +2101,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11980" ], "x-ms-request-id": [ - "423e1863-0dc9-4a5a-9f68-476bd4e977d7" + "b5561242-7038-4d0e-bb00-a2210cd0e7eb" ], "x-ms-correlation-request-id": [ - "423e1863-0dc9-4a5a-9f68-476bd4e977d7" + "b5561242-7038-4d0e-bb00-a2210cd0e7eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225813Z:423e1863-0dc9-4a5a-9f68-476bd4e977d7" + "WESTUS:20210217T043142Z:b5561242-7038-4d0e-bb00-a2210cd0e7eb" ], "Date": [ - "Mon, 31 Aug 2020 22:58:13 GMT" + "Wed, 17 Feb 2021 04:31:41 GMT" ], "Content-Length": [ "282" @@ -2019,20 +2136,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2042,29 +2159,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11936" ], "x-ms-request-id": [ - "80431257-594f-49f5-9af8-b059fb37ada7" + "1c745ee0-b6f8-4ae8-9130-3fa8d709a52d" ], "x-ms-correlation-request-id": [ - "80431257-594f-49f5-9af8-b059fb37ada7" + "1c745ee0-b6f8-4ae8-9130-3fa8d709a52d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225833Z:80431257-594f-49f5-9af8-b059fb37ada7" + "WESTCENTRALUS:20210217T043202Z:1c745ee0-b6f8-4ae8-9130-3fa8d709a52d" ], "Date": [ - "Mon, 31 Aug 2020 22:58:33 GMT" + "Wed, 17 Feb 2021 04:32:02 GMT" ], "Content-Length": [ "282" @@ -2076,20 +2194,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2099,29 +2217,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11930" ], "x-ms-request-id": [ - "5adba494-60a6-45b8-b306-2f559dd0eabd" + "0f157117-4cfa-4b4d-850b-17b364252e7b" ], "x-ms-correlation-request-id": [ - "5adba494-60a6-45b8-b306-2f559dd0eabd" + "0f157117-4cfa-4b4d-850b-17b364252e7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225853Z:5adba494-60a6-45b8-b306-2f559dd0eabd" + "WESTCENTRALUS:20210217T043222Z:0f157117-4cfa-4b4d-850b-17b364252e7b" ], "Date": [ - "Mon, 31 Aug 2020 22:58:52 GMT" + "Wed, 17 Feb 2021 04:32:22 GMT" ], "Content-Length": [ "282" @@ -2133,20 +2252,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2156,29 +2275,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11977" ], "x-ms-request-id": [ - "185648c9-9649-4960-ad1b-71b6f135fd5a" + "14008ff0-6ffd-482f-bc4f-65e71e883efb" ], "x-ms-correlation-request-id": [ - "185648c9-9649-4960-ad1b-71b6f135fd5a" + "14008ff0-6ffd-482f-bc4f-65e71e883efb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225913Z:185648c9-9649-4960-ad1b-71b6f135fd5a" + "WESTUS:20210217T043243Z:14008ff0-6ffd-482f-bc4f-65e71e883efb" ], "Date": [ - "Mon, 31 Aug 2020 22:59:12 GMT" + "Wed, 17 Feb 2021 04:32:42 GMT" ], "Content-Length": [ "282" @@ -2190,20 +2310,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2213,29 +2333,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11975" ], "x-ms-request-id": [ - "09e0865f-3652-4266-8796-9c01f68538dc" + "5ed5521a-5d2e-4155-ac98-e7eb1e2d43ce" ], "x-ms-correlation-request-id": [ - "09e0865f-3652-4266-8796-9c01f68538dc" + "5ed5521a-5d2e-4155-ac98-e7eb1e2d43ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225933Z:09e0865f-3652-4266-8796-9c01f68538dc" + "WESTUS:20210217T043303Z:5ed5521a-5d2e-4155-ac98-e7eb1e2d43ce" ], "Date": [ - "Mon, 31 Aug 2020 22:59:32 GMT" + "Wed, 17 Feb 2021 04:33:03 GMT" ], "Content-Length": [ "282" @@ -2247,20 +2368,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2270,29 +2391,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11973" ], "x-ms-request-id": [ - "b2455c4f-ac67-4614-95ce-c8d9a5c629f7" + "20b88d77-eaf1-45c7-877a-ebca21514150" ], "x-ms-correlation-request-id": [ - "b2455c4f-ac67-4614-95ce-c8d9a5c629f7" + "20b88d77-eaf1-45c7-877a-ebca21514150" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225953Z:b2455c4f-ac67-4614-95ce-c8d9a5c629f7" + "WESTUS:20210217T043323Z:20b88d77-eaf1-45c7-877a-ebca21514150" ], "Date": [ - "Mon, 31 Aug 2020 22:59:52 GMT" + "Wed, 17 Feb 2021 04:33:23 GMT" ], "Content-Length": [ "282" @@ -2304,20 +2426,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2327,29 +2449,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11971" ], "x-ms-request-id": [ - "6d2fc7ba-be95-4286-a5a0-fbe642ba5f47" + "95c6186f-3ac3-4b69-b1d4-91d83c64ec0b" ], "x-ms-correlation-request-id": [ - "6d2fc7ba-be95-4286-a5a0-fbe642ba5f47" + "95c6186f-3ac3-4b69-b1d4-91d83c64ec0b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230013Z:6d2fc7ba-be95-4286-a5a0-fbe642ba5f47" + "WESTUS:20210217T043344Z:95c6186f-3ac3-4b69-b1d4-91d83c64ec0b" ], "Date": [ - "Mon, 31 Aug 2020 23:00:12 GMT" + "Wed, 17 Feb 2021 04:33:43 GMT" ], "Content-Length": [ "282" @@ -2361,20 +2484,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2384,29 +2507,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11969" ], "x-ms-request-id": [ - "71995ff4-8aaa-4f8e-9090-4523070a693c" + "95457c49-7e4a-4d8b-ba47-0839d6138d35" ], "x-ms-correlation-request-id": [ - "71995ff4-8aaa-4f8e-9090-4523070a693c" + "95457c49-7e4a-4d8b-ba47-0839d6138d35" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230033Z:71995ff4-8aaa-4f8e-9090-4523070a693c" + "WESTUS:20210217T043404Z:95457c49-7e4a-4d8b-ba47-0839d6138d35" ], "Date": [ - "Mon, 31 Aug 2020 23:00:33 GMT" + "Wed, 17 Feb 2021 04:34:03 GMT" ], "Content-Length": [ "282" @@ -2418,20 +2542,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2441,29 +2565,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11966" ], "x-ms-request-id": [ - "20f224a5-24e7-419a-b29c-a09090ac23c1" + "0d15e78a-3880-47f8-928e-3ed556b703c7" ], "x-ms-correlation-request-id": [ - "20f224a5-24e7-419a-b29c-a09090ac23c1" + "0d15e78a-3880-47f8-928e-3ed556b703c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230053Z:20f224a5-24e7-419a-b29c-a09090ac23c1" + "WESTUS:20210217T043424Z:0d15e78a-3880-47f8-928e-3ed556b703c7" ], "Date": [ - "Mon, 31 Aug 2020 23:00:53 GMT" + "Wed, 17 Feb 2021 04:34:23 GMT" ], "Content-Length": [ "282" @@ -2475,20 +2600,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2498,29 +2623,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11963" ], "x-ms-request-id": [ - "5bb61ad6-d185-41c2-a88a-bb38fd651a4c" + "b274e0f3-92b4-4c5a-8a02-47f266b7067d" ], "x-ms-correlation-request-id": [ - "5bb61ad6-d185-41c2-a88a-bb38fd651a4c" + "b274e0f3-92b4-4c5a-8a02-47f266b7067d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230113Z:5bb61ad6-d185-41c2-a88a-bb38fd651a4c" + "WESTUS:20210217T043444Z:b274e0f3-92b4-4c5a-8a02-47f266b7067d" ], "Date": [ - "Mon, 31 Aug 2020 23:01:13 GMT" + "Wed, 17 Feb 2021 04:34:44 GMT" ], "Content-Length": [ "282" @@ -2532,20 +2658,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/62f00001-117d-40a7-aea9-52745ea16b2f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzYyZjAwMDAxLTExN2QtNDBhNy1hZWE5LTUyNzQ1ZWExNmIyZj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2555,32 +2681,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11960" ], "x-ms-request-id": [ - "f127785c-3aa0-49a9-ac7c-33625f7e5aef" + "766e9301-6612-4dd5-8eb7-79deb80188ea" ], "x-ms-correlation-request-id": [ - "f127785c-3aa0-49a9-ac7c-33625f7e5aef" + "766e9301-6612-4dd5-8eb7-79deb80188ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230134Z:f127785c-3aa0-49a9-ac7c-33625f7e5aef" + "WESTUS:20210217T043504Z:766e9301-6612-4dd5-8eb7-79deb80188ea" ], "Date": [ - "Mon, 31 Aug 2020 23:01:33 GMT" + "Wed, 17 Feb 2021 04:35:04 GMT" ], "Content-Length": [ - "294" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2589,20 +2716,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"62f00001-117d-40a7-aea9-52745ea16b2f\",\r\n \"startTime\": \"2020-08-31T22:53:51.9729492Z\",\r\n \"endTime\": \"2020-08-31T23:01:23.4157953Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/396b0005-81c4-4305-99d5-37671a057905?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzM5NmIwMDA1LTgxYzQtNDMwNS05OWQ1LTM3NjcxYTA1NzkwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2612,32 +2739,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11958" ], "x-ms-request-id": [ - "147f68ce-b60f-4109-a71e-217facd415ba" + "bcdc9169-e072-4ad5-849e-406680bed3af" ], "x-ms-correlation-request-id": [ - "147f68ce-b60f-4109-a71e-217facd415ba" + "bcdc9169-e072-4ad5-849e-406680bed3af" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225412Z:147f68ce-b60f-4109-a71e-217facd415ba" + "WESTUS:20210217T043525Z:bcdc9169-e072-4ad5-849e-406680bed3af" ], "Date": [ - "Mon, 31 Aug 2020 22:54:12 GMT" + "Wed, 17 Feb 2021 04:35:24 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2646,20 +2774,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"396b0005-81c4-4305-99d5-37671a057905\",\r\n \"startTime\": \"2021-02-17T04:27:19.7478697Z\",\r\n \"endTime\": \"2021-02-17T04:35:21.4778657Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2669,29 +2797,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11973" ], "x-ms-request-id": [ - "9a7a2cfd-26f1-4a7f-91ab-73333e74f158" + "8b7714c1-728f-489b-9226-27fc9f4082d9" ], "x-ms-correlation-request-id": [ - "9a7a2cfd-26f1-4a7f-91ab-73333e74f158" + "8b7714c1-728f-489b-9226-27fc9f4082d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225432Z:9a7a2cfd-26f1-4a7f-91ab-73333e74f158" + "WESTCENTRALUS:20210217T042740Z:8b7714c1-728f-489b-9226-27fc9f4082d9" ], "Date": [ - "Mon, 31 Aug 2020 22:54:32 GMT" + "Wed, 17 Feb 2021 04:27:39 GMT" ], "Content-Length": [ "282" @@ -2703,20 +2832,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2726,29 +2855,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-request-id": [ - "05629e2e-cb8c-48c7-aa98-36654db419da" + "945b7e7d-e44f-4cdd-801f-fef535baea97" ], "x-ms-correlation-request-id": [ - "05629e2e-cb8c-48c7-aa98-36654db419da" + "945b7e7d-e44f-4cdd-801f-fef535baea97" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225452Z:05629e2e-cb8c-48c7-aa98-36654db419da" + "WESTUS:20210217T042800Z:945b7e7d-e44f-4cdd-801f-fef535baea97" ], "Date": [ - "Mon, 31 Aug 2020 22:54:52 GMT" + "Wed, 17 Feb 2021 04:27:59 GMT" ], "Content-Length": [ "282" @@ -2760,20 +2890,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2783,29 +2913,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11970" ], "x-ms-request-id": [ - "42cdf9e9-733f-4b58-8d88-4f821c1c844e" + "f5b2331d-8310-4301-9888-7aee42a2d4d2" ], "x-ms-correlation-request-id": [ - "42cdf9e9-733f-4b58-8d88-4f821c1c844e" + "f5b2331d-8310-4301-9888-7aee42a2d4d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225512Z:42cdf9e9-733f-4b58-8d88-4f821c1c844e" + "WESTCENTRALUS:20210217T042820Z:f5b2331d-8310-4301-9888-7aee42a2d4d2" ], "Date": [ - "Mon, 31 Aug 2020 22:55:12 GMT" + "Wed, 17 Feb 2021 04:28:19 GMT" ], "Content-Length": [ "282" @@ -2817,20 +2948,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2840,29 +2971,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11989" ], "x-ms-request-id": [ - "a0920c92-52b5-470d-a38a-b0059d8289e9" + "2b776fa2-5803-4b41-a673-967ef277a440" ], "x-ms-correlation-request-id": [ - "a0920c92-52b5-470d-a38a-b0059d8289e9" + "2b776fa2-5803-4b41-a673-967ef277a440" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225532Z:a0920c92-52b5-470d-a38a-b0059d8289e9" + "WESTUS:20210217T042840Z:2b776fa2-5803-4b41-a673-967ef277a440" ], "Date": [ - "Mon, 31 Aug 2020 22:55:32 GMT" + "Wed, 17 Feb 2021 04:28:40 GMT" ], "Content-Length": [ "282" @@ -2874,20 +3006,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2897,29 +3029,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11956" ], "x-ms-request-id": [ - "05a87190-ba6f-4d0b-9f47-63767fbef9f3" + "c417ec41-b478-427b-ae62-efd9cd0546c0" ], "x-ms-correlation-request-id": [ - "05a87190-ba6f-4d0b-9f47-63767fbef9f3" + "c417ec41-b478-427b-ae62-efd9cd0546c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225552Z:05a87190-ba6f-4d0b-9f47-63767fbef9f3" + "WESTCENTRALUS:20210217T042900Z:c417ec41-b478-427b-ae62-efd9cd0546c0" ], "Date": [ - "Mon, 31 Aug 2020 22:55:52 GMT" + "Wed, 17 Feb 2021 04:29:00 GMT" ], "Content-Length": [ "282" @@ -2931,20 +3064,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -2954,29 +3087,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11987" ], "x-ms-request-id": [ - "9a2512ba-d668-45bc-a80f-77b0dcb8c047" + "35376820-5a8f-43b9-8f54-99b99edd66fb" ], "x-ms-correlation-request-id": [ - "9a2512ba-d668-45bc-a80f-77b0dcb8c047" + "35376820-5a8f-43b9-8f54-99b99edd66fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225612Z:9a2512ba-d668-45bc-a80f-77b0dcb8c047" + "WESTUS:20210217T042921Z:35376820-5a8f-43b9-8f54-99b99edd66fb" ], "Date": [ - "Mon, 31 Aug 2020 22:56:12 GMT" + "Wed, 17 Feb 2021 04:29:20 GMT" ], "Content-Length": [ "282" @@ -2988,20 +3122,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3011,29 +3145,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11944" ], "x-ms-request-id": [ - "5e89b9eb-2e3e-4a88-8744-027c2ce38fd4" + "fdd03d5d-4916-4a52-ac0f-b51d274e0713" ], "x-ms-correlation-request-id": [ - "5e89b9eb-2e3e-4a88-8744-027c2ce38fd4" + "fdd03d5d-4916-4a52-ac0f-b51d274e0713" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225632Z:5e89b9eb-2e3e-4a88-8744-027c2ce38fd4" + "WESTCENTRALUS:20210217T042941Z:fdd03d5d-4916-4a52-ac0f-b51d274e0713" ], "Date": [ - "Mon, 31 Aug 2020 22:56:32 GMT" + "Wed, 17 Feb 2021 04:29:40 GMT" ], "Content-Length": [ "282" @@ -3045,20 +3180,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3068,29 +3203,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11985" ], "x-ms-request-id": [ - "5adf44ef-dbb9-4301-883e-d16e09ecd976" + "689cfa03-12a6-487e-8f0f-e2ae77f57d0d" ], "x-ms-correlation-request-id": [ - "5adf44ef-dbb9-4301-883e-d16e09ecd976" + "689cfa03-12a6-487e-8f0f-e2ae77f57d0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225652Z:5adf44ef-dbb9-4301-883e-d16e09ecd976" + "WESTUS:20210217T043001Z:689cfa03-12a6-487e-8f0f-e2ae77f57d0d" ], "Date": [ - "Mon, 31 Aug 2020 22:56:52 GMT" + "Wed, 17 Feb 2021 04:30:00 GMT" ], "Content-Length": [ "282" @@ -3102,20 +3238,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3125,29 +3261,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11942" ], "x-ms-request-id": [ - "78284d53-6e17-46ae-aaf8-ac480fe99c21" + "660e26c0-c4f6-4a3a-8f25-35718a0556c2" ], "x-ms-correlation-request-id": [ - "78284d53-6e17-46ae-aaf8-ac480fe99c21" + "660e26c0-c4f6-4a3a-8f25-35718a0556c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225713Z:78284d53-6e17-46ae-aaf8-ac480fe99c21" + "WESTCENTRALUS:20210217T043021Z:660e26c0-c4f6-4a3a-8f25-35718a0556c2" ], "Date": [ - "Mon, 31 Aug 2020 22:57:12 GMT" + "Wed, 17 Feb 2021 04:30:21 GMT" ], "Content-Length": [ "282" @@ -3159,20 +3296,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3182,29 +3319,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11983" ], "x-ms-request-id": [ - "cdfabd28-e18e-446c-a140-0c0e6be96c3c" + "a8ab7bb7-cc1a-4526-8b2c-e4b3b01cc66a" ], "x-ms-correlation-request-id": [ - "cdfabd28-e18e-446c-a140-0c0e6be96c3c" + "a8ab7bb7-cc1a-4526-8b2c-e4b3b01cc66a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225733Z:cdfabd28-e18e-446c-a140-0c0e6be96c3c" + "WESTUS:20210217T043041Z:a8ab7bb7-cc1a-4526-8b2c-e4b3b01cc66a" ], "Date": [ - "Mon, 31 Aug 2020 22:57:32 GMT" + "Wed, 17 Feb 2021 04:30:40 GMT" ], "Content-Length": [ "282" @@ -3216,20 +3354,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3239,29 +3377,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11939" ], "x-ms-request-id": [ - "7c0ae616-0b53-45cc-9138-47393347553b" + "826962d8-e930-4ebd-a9d3-66a9f1a9979e" ], "x-ms-correlation-request-id": [ - "7c0ae616-0b53-45cc-9138-47393347553b" + "826962d8-e930-4ebd-a9d3-66a9f1a9979e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225753Z:7c0ae616-0b53-45cc-9138-47393347553b" + "WESTCENTRALUS:20210217T043101Z:826962d8-e930-4ebd-a9d3-66a9f1a9979e" ], "Date": [ - "Mon, 31 Aug 2020 22:57:52 GMT" + "Wed, 17 Feb 2021 04:31:01 GMT" ], "Content-Length": [ "282" @@ -3273,20 +3412,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3296,29 +3435,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11981" ], "x-ms-request-id": [ - "35f19bc3-078c-4477-a427-b0e412d013f6" + "138eea68-a407-4a7f-be99-100bedb0a82a" ], "x-ms-correlation-request-id": [ - "35f19bc3-078c-4477-a427-b0e412d013f6" + "138eea68-a407-4a7f-be99-100bedb0a82a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225813Z:35f19bc3-078c-4477-a427-b0e412d013f6" + "WESTUS:20210217T043122Z:138eea68-a407-4a7f-be99-100bedb0a82a" ], "Date": [ - "Mon, 31 Aug 2020 22:58:13 GMT" + "Wed, 17 Feb 2021 04:31:21 GMT" ], "Content-Length": [ "282" @@ -3330,20 +3470,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3353,29 +3493,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11937" ], "x-ms-request-id": [ - "a7c93bb5-eb4b-4044-be3c-228d6a6dd39f" + "f9235420-be02-49d7-aee2-cdc551a6025b" ], "x-ms-correlation-request-id": [ - "a7c93bb5-eb4b-4044-be3c-228d6a6dd39f" + "f9235420-be02-49d7-aee2-cdc551a6025b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225833Z:a7c93bb5-eb4b-4044-be3c-228d6a6dd39f" + "WESTCENTRALUS:20210217T043142Z:f9235420-be02-49d7-aee2-cdc551a6025b" ], "Date": [ - "Mon, 31 Aug 2020 22:58:33 GMT" + "Wed, 17 Feb 2021 04:31:41 GMT" ], "Content-Length": [ "282" @@ -3387,20 +3528,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3410,29 +3551,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8677cbdd-7737-4383-b7c3-c6577c982b2e" + "bccd5dab-5362-455f-8dee-59ed05555123" ], "x-ms-correlation-request-id": [ - "8677cbdd-7737-4383-b7c3-c6577c982b2e" + "bccd5dab-5362-455f-8dee-59ed05555123" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225853Z:8677cbdd-7737-4383-b7c3-c6577c982b2e" + "WESTUS:20210217T043202Z:bccd5dab-5362-455f-8dee-59ed05555123" ], "Date": [ - "Mon, 31 Aug 2020 22:58:53 GMT" + "Wed, 17 Feb 2021 04:32:01 GMT" ], "Content-Length": [ "282" @@ -3444,20 +3586,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3467,29 +3609,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11931" ], "x-ms-request-id": [ - "b4ae00d8-2fb9-4364-9f04-ac55e46bee27" + "109b50d2-0d63-4d31-8b69-6ff70f4a7354" ], "x-ms-correlation-request-id": [ - "b4ae00d8-2fb9-4364-9f04-ac55e46bee27" + "109b50d2-0d63-4d31-8b69-6ff70f4a7354" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225913Z:b4ae00d8-2fb9-4364-9f04-ac55e46bee27" + "WESTCENTRALUS:20210217T043222Z:109b50d2-0d63-4d31-8b69-6ff70f4a7354" ], "Date": [ - "Mon, 31 Aug 2020 22:59:13 GMT" + "Wed, 17 Feb 2021 04:32:22 GMT" ], "Content-Length": [ "282" @@ -3501,20 +3644,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3524,29 +3667,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11926" ], "x-ms-request-id": [ - "acdccebd-f9df-4c96-9b5e-5c6f70e2b7f7" + "bfac3b28-bf82-42ee-ba38-243287e52cf9" ], "x-ms-correlation-request-id": [ - "acdccebd-f9df-4c96-9b5e-5c6f70e2b7f7" + "bfac3b28-bf82-42ee-ba38-243287e52cf9" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225933Z:acdccebd-f9df-4c96-9b5e-5c6f70e2b7f7" + "WESTCENTRALUS:20210217T043242Z:bfac3b28-bf82-42ee-ba38-243287e52cf9" ], "Date": [ - "Mon, 31 Aug 2020 22:59:33 GMT" + "Wed, 17 Feb 2021 04:32:42 GMT" ], "Content-Length": [ "282" @@ -3558,20 +3702,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3581,29 +3725,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11976" ], "x-ms-request-id": [ - "8d7084fb-7cf4-4325-9882-8f8826f6c363" + "cb34d50a-90e1-46be-9757-21e4a256f564" ], "x-ms-correlation-request-id": [ - "8d7084fb-7cf4-4325-9882-8f8826f6c363" + "cb34d50a-90e1-46be-9757-21e4a256f564" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T225953Z:8d7084fb-7cf4-4325-9882-8f8826f6c363" + "WESTUS:20210217T043303Z:cb34d50a-90e1-46be-9757-21e4a256f564" ], "Date": [ - "Mon, 31 Aug 2020 22:59:53 GMT" + "Wed, 17 Feb 2021 04:33:02 GMT" ], "Content-Length": [ "282" @@ -3615,20 +3760,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3638,29 +3783,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11974" ], "x-ms-request-id": [ - "5c297c39-341e-46a1-bfb7-2fce29a37e6f" + "10fae5a7-27be-447b-967e-0aea95a46a8b" ], "x-ms-correlation-request-id": [ - "5c297c39-341e-46a1-bfb7-2fce29a37e6f" + "10fae5a7-27be-447b-967e-0aea95a46a8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230014Z:5c297c39-341e-46a1-bfb7-2fce29a37e6f" + "WESTUS:20210217T043323Z:10fae5a7-27be-447b-967e-0aea95a46a8b" ], "Date": [ - "Mon, 31 Aug 2020 23:00:13 GMT" + "Wed, 17 Feb 2021 04:33:22 GMT" ], "Content-Length": [ "282" @@ -3672,20 +3818,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3695,29 +3841,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11972" ], "x-ms-request-id": [ - "847f06a6-c595-49af-9434-47accec567a4" + "caa0a066-d76e-475d-82e2-0e885788f6bf" ], "x-ms-correlation-request-id": [ - "847f06a6-c595-49af-9434-47accec567a4" + "caa0a066-d76e-475d-82e2-0e885788f6bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230034Z:847f06a6-c595-49af-9434-47accec567a4" + "WESTUS:20210217T043343Z:caa0a066-d76e-475d-82e2-0e885788f6bf" ], "Date": [ - "Mon, 31 Aug 2020 23:00:34 GMT" + "Wed, 17 Feb 2021 04:33:43 GMT" ], "Content-Length": [ "282" @@ -3729,20 +3876,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3752,29 +3899,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11970" ], "x-ms-request-id": [ - "7976ce54-e285-4efc-866c-f9867dc4bc26" + "cabd1a66-a7dd-4d8e-a680-919d9d7f5dbf" ], "x-ms-correlation-request-id": [ - "7976ce54-e285-4efc-866c-f9867dc4bc26" + "cabd1a66-a7dd-4d8e-a680-919d9d7f5dbf" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230054Z:7976ce54-e285-4efc-866c-f9867dc4bc26" + "WESTUS:20210217T043403Z:cabd1a66-a7dd-4d8e-a680-919d9d7f5dbf" ], "Date": [ - "Mon, 31 Aug 2020 23:00:53 GMT" + "Wed, 17 Feb 2021 04:34:03 GMT" ], "Content-Length": [ "282" @@ -3786,20 +3934,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3809,29 +3957,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11967" ], "x-ms-request-id": [ - "30ea3dfc-f169-4be5-bbca-660dfa63bec8" + "11d10d69-0c0d-405a-a397-c11256c2e6ee" ], "x-ms-correlation-request-id": [ - "30ea3dfc-f169-4be5-bbca-660dfa63bec8" + "11d10d69-0c0d-405a-a397-c11256c2e6ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230114Z:30ea3dfc-f169-4be5-bbca-660dfa63bec8" + "WESTUS:20210217T043423Z:11d10d69-0c0d-405a-a397-c11256c2e6ee" ], "Date": [ - "Mon, 31 Aug 2020 23:01:13 GMT" + "Wed, 17 Feb 2021 04:34:22 GMT" ], "Content-Length": [ "282" @@ -3843,20 +3992,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3866,29 +4015,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11964" ], "x-ms-request-id": [ - "93cf893f-0416-47f4-85bf-033317b6eee0" + "b8f07c4d-7998-44b4-bdf1-00bac24450f0" ], "x-ms-correlation-request-id": [ - "93cf893f-0416-47f4-85bf-033317b6eee0" + "b8f07c4d-7998-44b4-bdf1-00bac24450f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230134Z:93cf893f-0416-47f4-85bf-033317b6eee0" + "WESTUS:20210217T043443Z:b8f07c4d-7998-44b4-bdf1-00bac24450f0" ], "Date": [ - "Mon, 31 Aug 2020 23:01:33 GMT" + "Wed, 17 Feb 2021 04:34:43 GMT" ], "Content-Length": [ "282" @@ -3900,20 +4050,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/aca10005-b40f-49df-ab25-f45e3568089a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2FjYTEwMDA1LWI0MGYtNDlkZi1hYjI1LWY0NWUzNTY4MDg5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -3923,32 +4073,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11962" ], "x-ms-request-id": [ - "5be2aa96-1c1e-4909-8097-66e72605a764" + "e23e950c-e9bd-44aa-a6ae-50288a31d13b" ], "x-ms-correlation-request-id": [ - "5be2aa96-1c1e-4909-8097-66e72605a764" + "e23e950c-e9bd-44aa-a6ae-50288a31d13b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230154Z:5be2aa96-1c1e-4909-8097-66e72605a764" + "WESTUS:20210217T043504Z:e23e950c-e9bd-44aa-a6ae-50288a31d13b" ], "Date": [ - "Mon, 31 Aug 2020 23:01:53 GMT" + "Wed, 17 Feb 2021 04:35:03 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3957,20 +4108,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"aca10005-b40f-49df-ab25-f45e3568089a\",\r\n \"startTime\": \"2021-02-17T04:27:19.9353649Z\",\r\n \"endTime\": \"2021-02-17T04:34:53.7460977Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt/restart?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQvcmVzdGFydD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"nodes\": [\r\n \"snt_0\",\r\n \"snt_1\"\r\n ],\r\n \"force\": false\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" ] }, "ResponseHeaders": { @@ -3980,32 +4143,39 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "15367fbd-9b95-4363-941f-7cc3a663dea5" + "99ccad0d-2b76-46d1-ad15-092e841a74ef" ], "x-ms-correlation-request-id": [ - "15367fbd-9b95-4363-941f-7cc3a663dea5" + "99ccad0d-2b76-46d1-ad15-092e841a74ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230214Z:15367fbd-9b95-4363-941f-7cc3a663dea5" + "WESTUS:20210217T043537Z:99ccad0d-2b76-46d1-ad15-092e841a74ef" ], "Date": [ - "Mon, 31 Aug 2020 23:02:13 GMT" + "Wed, 17 Feb 2021 04:35:36 GMT" ], "Content-Length": [ - "282" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4014,20 +4184,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4037,32 +4210,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11956" ], "x-ms-request-id": [ - "04d782b9-7c14-4e1d-a727-032011a21ccc" + "f5b56ac7-1c45-453a-bb98-73ab8b9d5373" ], "x-ms-correlation-request-id": [ - "04d782b9-7c14-4e1d-a727-032011a21ccc" + "f5b56ac7-1c45-453a-bb98-73ab8b9d5373" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230234Z:04d782b9-7c14-4e1d-a727-032011a21ccc" + "WESTUS:20210217T043557Z:f5b56ac7-1c45-453a-bb98-73ab8b9d5373" ], "Date": [ - "Mon, 31 Aug 2020 23:02:33 GMT" + "Wed, 17 Feb 2021 04:35:56 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4071,20 +4245,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4094,32 +4271,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11955" ], "x-ms-request-id": [ - "b62911ce-d8f7-4209-915a-60afa64eaa54" + "21fa9879-eb9a-46ae-b411-3a21d51704b1" ], "x-ms-correlation-request-id": [ - "b62911ce-d8f7-4209-915a-60afa64eaa54" + "21fa9879-eb9a-46ae-b411-3a21d51704b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230254Z:b62911ce-d8f7-4209-915a-60afa64eaa54" + "WESTUS:20210217T043618Z:21fa9879-eb9a-46ae-b411-3a21d51704b1" ], "Date": [ - "Mon, 31 Aug 2020 23:02:53 GMT" + "Wed, 17 Feb 2021 04:36:17 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4128,20 +4306,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/be360001-6705-498d-b97b-1d9e59412e7f?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JlMzYwMDAxLTY3MDUtNDk4ZC1iOTdiLTFkOWU1OTQxMmU3Zj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4151,32 +4332,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11954" ], "x-ms-request-id": [ - "433f433e-b986-4a10-9347-e66214caa149" + "a47b0ae9-e556-4acf-a4b6-2029ef63afc2" ], "x-ms-correlation-request-id": [ - "433f433e-b986-4a10-9347-e66214caa149" + "a47b0ae9-e556-4acf-a4b6-2029ef63afc2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230314Z:433f433e-b986-4a10-9347-e66214caa149" + "WESTUS:20210217T043638Z:a47b0ae9-e556-4acf-a4b6-2029ef63afc2" ], "Date": [ - "Mon, 31 Aug 2020 23:03:14 GMT" + "Wed, 17 Feb 2021 04:36:37 GMT" ], "Content-Length": [ - "294" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4185,32 +4367,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"be360001-6705-498d-b97b-1d9e59412e7f\",\r\n \"startTime\": \"2020-08-31T22:53:52.0831693Z\",\r\n \"endTime\": \"2020-08-31T23:03:02.7346417Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt/restart?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQvcmVzdGFydD9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodes\": [\r\n \"snt_0\",\r\n \"snt_1\"\r\n ],\r\n \"force\": false\r\n}", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a40fc6-875e-4c85-8de7-f31362738a62" - ], - "Accept-Language": [ - "en-US" + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "69" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4220,38 +4393,33 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" ], "x-ms-request-id": [ - "e2b59d80-f36c-40a2-88d8-2ef3b16be13f" + "42ad57c5-6845-47a0-bec6-f9825fb6c564" ], "x-ms-correlation-request-id": [ - "e2b59d80-f36c-40a2-88d8-2ef3b16be13f" + "42ad57c5-6845-47a0-bec6-f9825fb6c564" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230322Z:e2b59d80-f36c-40a2-88d8-2ef3b16be13f" + "WESTUS:20210217T043658Z:42ad57c5-6845-47a0-bec6-f9825fb6c564" ], "Date": [ - "Mon, 31 Aug 2020 23:03:21 GMT" + "Wed, 17 Feb 2021 04:36:57 GMT" ], "Content-Length": [ - "2" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4260,20 +4428,23 @@ "-1" ] }, - "ResponseBody": "{}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4283,29 +4454,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11952" ], "x-ms-request-id": [ - "9224e5dc-3639-4deb-8977-527aaffec97f" + "f22d4703-3db8-41e7-8bcc-66e3b7f29edd" ], "x-ms-correlation-request-id": [ - "9224e5dc-3639-4deb-8977-527aaffec97f" + "f22d4703-3db8-41e7-8bcc-66e3b7f29edd" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230342Z:9224e5dc-3639-4deb-8977-527aaffec97f" + "WESTUS:20210217T043718Z:f22d4703-3db8-41e7-8bcc-66e3b7f29edd" ], "Date": [ - "Mon, 31 Aug 2020 23:03:41 GMT" + "Wed, 17 Feb 2021 04:37:17 GMT" ], "Content-Length": [ "281" @@ -4317,20 +4489,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4340,29 +4515,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11951" ], "x-ms-request-id": [ - "99afb548-fc81-4a7b-a295-3e62b7ed8d55" + "b9ffbc0b-2e57-45b4-9cf7-8d9cbccde186" ], "x-ms-correlation-request-id": [ - "99afb548-fc81-4a7b-a295-3e62b7ed8d55" + "b9ffbc0b-2e57-45b4-9cf7-8d9cbccde186" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230402Z:99afb548-fc81-4a7b-a295-3e62b7ed8d55" + "WESTUS:20210217T043738Z:b9ffbc0b-2e57-45b4-9cf7-8d9cbccde186" ], "Date": [ - "Mon, 31 Aug 2020 23:04:01 GMT" + "Wed, 17 Feb 2021 04:37:37 GMT" ], "Content-Length": [ "281" @@ -4374,20 +4550,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4397,29 +4576,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11950" ], "x-ms-request-id": [ - "16e648da-0cb6-4487-bd81-d736ad3c5afc" + "b55b843b-890b-4015-b6b3-b33f1423900e" ], "x-ms-correlation-request-id": [ - "16e648da-0cb6-4487-bd81-d736ad3c5afc" + "b55b843b-890b-4015-b6b3-b33f1423900e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230422Z:16e648da-0cb6-4487-bd81-d736ad3c5afc" + "WESTUS:20210217T043758Z:b55b843b-890b-4015-b6b3-b33f1423900e" ], "Date": [ - "Mon, 31 Aug 2020 23:04:21 GMT" + "Wed, 17 Feb 2021 04:37:57 GMT" ], "Content-Length": [ "281" @@ -4431,20 +4611,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4454,29 +4637,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11949" ], "x-ms-request-id": [ - "4a4954b9-e039-4f84-a413-4326b1e54877" + "136969b9-bd88-4c7b-a9ea-cb8cfdd6a270" ], "x-ms-correlation-request-id": [ - "4a4954b9-e039-4f84-a413-4326b1e54877" + "136969b9-bd88-4c7b-a9ea-cb8cfdd6a270" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230442Z:4a4954b9-e039-4f84-a413-4326b1e54877" + "WESTUS:20210217T043819Z:136969b9-bd88-4c7b-a9ea-cb8cfdd6a270" ], "Date": [ - "Mon, 31 Aug 2020 23:04:41 GMT" + "Wed, 17 Feb 2021 04:38:18 GMT" ], "Content-Length": [ "281" @@ -4488,20 +4672,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4511,29 +4698,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11948" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "93b59879-3e8b-4e23-b1d3-931ba01cd6b5" + "bac275b5-be4c-4683-b8b1-bd2c5b2ec4df" ], "x-ms-correlation-request-id": [ - "93b59879-3e8b-4e23-b1d3-931ba01cd6b5" + "bac275b5-be4c-4683-b8b1-bd2c5b2ec4df" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230502Z:93b59879-3e8b-4e23-b1d3-931ba01cd6b5" + "WESTUS:20210217T043839Z:bac275b5-be4c-4683-b8b1-bd2c5b2ec4df" ], "Date": [ - "Mon, 31 Aug 2020 23:05:02 GMT" + "Wed, 17 Feb 2021 04:38:38 GMT" ], "Content-Length": [ "281" @@ -4545,20 +4733,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4568,29 +4759,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11947" ], "x-ms-request-id": [ - "4dbd4237-3ee2-42f3-9d94-f9d932c7ca90" + "a00b32a8-e2a7-461c-8574-79d9af7e683a" ], "x-ms-correlation-request-id": [ - "4dbd4237-3ee2-42f3-9d94-f9d932c7ca90" + "a00b32a8-e2a7-461c-8574-79d9af7e683a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230522Z:4dbd4237-3ee2-42f3-9d94-f9d932c7ca90" + "WESTUS:20210217T043900Z:a00b32a8-e2a7-461c-8574-79d9af7e683a" ], "Date": [ - "Mon, 31 Aug 2020 23:05:22 GMT" + "Wed, 17 Feb 2021 04:38:59 GMT" ], "Content-Length": [ "281" @@ -4602,20 +4794,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4625,32 +4820,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" ], "x-ms-request-id": [ - "d8092844-504e-4ae0-ab56-0d634532b2f0" + "491567aa-4a28-4baa-86d1-7005f7f86d29" ], "x-ms-correlation-request-id": [ - "d8092844-504e-4ae0-ab56-0d634532b2f0" + "491567aa-4a28-4baa-86d1-7005f7f86d29" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230542Z:d8092844-504e-4ae0-ab56-0d634532b2f0" + "WESTUS:20210217T043920Z:491567aa-4a28-4baa-86d1-7005f7f86d29" ], "Date": [ - "Mon, 31 Aug 2020 23:05:42 GMT" + "Wed, 17 Feb 2021 04:39:19 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4659,20 +4855,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4682,32 +4881,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11945" ], "x-ms-request-id": [ - "cf619acd-7d11-4f3d-86cb-c9935dcbd6cc" + "05ff1d07-2c1b-48b9-b2c9-a7965e2821c2" ], "x-ms-correlation-request-id": [ - "cf619acd-7d11-4f3d-86cb-c9935dcbd6cc" + "05ff1d07-2c1b-48b9-b2c9-a7965e2821c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230602Z:cf619acd-7d11-4f3d-86cb-c9935dcbd6cc" + "WESTUS:20210217T043940Z:05ff1d07-2c1b-48b9-b2c9-a7965e2821c2" ], "Date": [ - "Mon, 31 Aug 2020 23:06:02 GMT" + "Wed, 17 Feb 2021 04:39:39 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4716,20 +4916,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4739,32 +4942,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11944" ], "x-ms-request-id": [ - "f5869511-8d7b-4146-be0c-7b90ddd6b5b1" + "03e8d289-468e-4e59-bb80-10ddf4bc2c08" ], "x-ms-correlation-request-id": [ - "f5869511-8d7b-4146-be0c-7b90ddd6b5b1" + "03e8d289-468e-4e59-bb80-10ddf4bc2c08" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230622Z:f5869511-8d7b-4146-be0c-7b90ddd6b5b1" + "WESTUS:20210217T044000Z:03e8d289-468e-4e59-bb80-10ddf4bc2c08" ], "Date": [ - "Mon, 31 Aug 2020 23:06:22 GMT" + "Wed, 17 Feb 2021 04:40:00 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4773,20 +4977,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4796,32 +5003,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11943" ], "x-ms-request-id": [ - "9c6e92de-ee4e-4d35-af48-250aee54143a" + "43aefe27-be58-47d9-9630-d2d60983e010" ], "x-ms-correlation-request-id": [ - "9c6e92de-ee4e-4d35-af48-250aee54143a" + "43aefe27-be58-47d9-9630-d2d60983e010" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230643Z:9c6e92de-ee4e-4d35-af48-250aee54143a" + "WESTUS:20210217T044020Z:43aefe27-be58-47d9-9630-d2d60983e010" ], "Date": [ - "Mon, 31 Aug 2020 23:06:42 GMT" + "Wed, 17 Feb 2021 04:40:20 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4830,20 +5038,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4853,32 +5064,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11942" ], "x-ms-request-id": [ - "c18b1e9f-d420-4ad4-ac26-3dd44a88a05e" + "46cdaa4f-4302-4f61-b15d-961e751d3ae5" ], "x-ms-correlation-request-id": [ - "c18b1e9f-d420-4ad4-ac26-3dd44a88a05e" + "46cdaa4f-4302-4f61-b15d-961e751d3ae5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230703Z:c18b1e9f-d420-4ad4-ac26-3dd44a88a05e" + "WESTUS:20210217T044040Z:46cdaa4f-4302-4f61-b15d-961e751d3ae5" ], "Date": [ - "Mon, 31 Aug 2020 23:07:02 GMT" + "Wed, 17 Feb 2021 04:40:40 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4887,20 +5099,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4910,32 +5125,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11941" ], "x-ms-request-id": [ - "d0557a48-8483-4097-bfc8-d6de52f1c172" + "b9286382-fe6b-425f-baea-9572245e34a0" ], "x-ms-correlation-request-id": [ - "d0557a48-8483-4097-bfc8-d6de52f1c172" + "b9286382-fe6b-425f-baea-9572245e34a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230723Z:d0557a48-8483-4097-bfc8-d6de52f1c172" + "WESTUS:20210217T044101Z:b9286382-fe6b-425f-baea-9572245e34a0" ], "Date": [ - "Mon, 31 Aug 2020 23:07:22 GMT" + "Wed, 17 Feb 2021 04:41:00 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4944,20 +5160,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -4967,29 +5186,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11940" ], "x-ms-request-id": [ - "4b3f8174-15ad-4ce1-affa-468082e7a993" + "6b821209-6a69-41ed-8e65-1b0dde0ab16e" ], "x-ms-correlation-request-id": [ - "4b3f8174-15ad-4ce1-affa-468082e7a993" + "6b821209-6a69-41ed-8e65-1b0dde0ab16e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230743Z:4b3f8174-15ad-4ce1-affa-468082e7a993" + "WESTUS:20210217T044121Z:6b821209-6a69-41ed-8e65-1b0dde0ab16e" ], "Date": [ - "Mon, 31 Aug 2020 23:07:42 GMT" + "Wed, 17 Feb 2021 04:41:20 GMT" ], "Content-Length": [ "294" @@ -5001,20 +5221,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0d690001-2612-49fe-94a5-0d4bb1ccefe2\",\r\n \"startTime\": \"2020-08-31T23:03:21.9381468Z\",\r\n \"endTime\": \"2020-08-31T23:07:23.7963568Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"28770005-3680-49e2-883e-a53e1e49569a\",\r\n \"startTime\": \"2021-02-17T04:35:34.5335055Z\",\r\n \"endTime\": \"2021-02-17T04:41:11.3737042Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/0d690001-2612-49fe-94a5-0d4bb1ccefe2?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzBkNjkwMDAxLTI2MTItNDlmZS05NGE1LTBkNGJiMWNjZWZlMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/28770005-3680-49e2-883e-a53e1e49569a?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzI4NzcwMDA1LTM2ODAtNDllMi04ODNlLWE1M2UxZTQ5NTY5YT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b315cc9-34bc-4ad1-8beb-093292fd37fc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5024,29 +5247,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11939" ], "x-ms-request-id": [ - "57854fe5-4b99-4944-8d0e-bc9661d61a1e" + "8d5f24c1-5b08-49e9-b1cb-77bd2df3eebe" ], "x-ms-correlation-request-id": [ - "57854fe5-4b99-4944-8d0e-bc9661d61a1e" + "8d5f24c1-5b08-49e9-b1cb-77bd2df3eebe" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230743Z:57854fe5-4b99-4944-8d0e-bc9661d61a1e" + "WESTUS:20210217T044121Z:8d5f24c1-5b08-49e9-b1cb-77bd2df3eebe" ], "Date": [ - "Mon, 31 Aug 2020 23:07:42 GMT" + "Wed, 17 Feb 2021 04:41:20 GMT" ], "Expires": [ "-1" @@ -5056,22 +5280,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt/deleteNode?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQvZGVsZXRlTm9kZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt/deleteNode?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQvZGVsZXRlTm9kZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodes\": [\r\n \"snt_1\"\r\n ],\r\n \"force\": false\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88fc2009-0135-4993-bf3b-8cc7741620b2" + "f129f008-6ea7-4c26-8613-613a1f5568dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5088,34 +5312,35 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "f178414b-3711-4f51-aafb-84ae28736a4d" + "4339a119-d534-4e18-bbbb-9b545ea12c32" ], "x-ms-correlation-request-id": [ - "f178414b-3711-4f51-aafb-84ae28736a4d" + "4339a119-d534-4e18-bbbb-9b545ea12c32" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230743Z:f178414b-3711-4f51-aafb-84ae28736a4d" + "WESTUS:20210217T044122Z:4339a119-d534-4e18-bbbb-9b545ea12c32" ], "Date": [ - "Mon, 31 Aug 2020 23:07:42 GMT" + "Wed, 17 Feb 2021 04:41:21 GMT" ], "Content-Length": [ "2" @@ -5131,16 +5356,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5150,86 +5378,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-request-id": [ - "4c9122eb-33ab-482f-b10f-886751a827bf" - ], - "x-ms-correlation-request-id": [ - "4c9122eb-33ab-482f-b10f-886751a827bf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200831T230803Z:4c9122eb-33ab-482f-b10f-886751a827bf" - ], - "Date": [ - "Mon, 31 Aug 2020 23:08:02 GMT" - ], - "Content-Length": [ - "281" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28801.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11938" ], "x-ms-request-id": [ - "64ff977b-421a-47b4-bfb8-111d90f0f7a6" + "f888a7cc-39ac-4c0f-baf9-b26d551b4cd7" ], "x-ms-correlation-request-id": [ - "64ff977b-421a-47b4-bfb8-111d90f0f7a6" + "f888a7cc-39ac-4c0f-baf9-b26d551b4cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230823Z:64ff977b-421a-47b4-bfb8-111d90f0f7a6" + "WESTUS:20210217T044142Z:f888a7cc-39ac-4c0f-baf9-b26d551b4cd7" ], "Date": [ - "Mon, 31 Aug 2020 23:08:22 GMT" + "Wed, 17 Feb 2021 04:41:41 GMT" ], "Content-Length": [ "281" @@ -5241,20 +5413,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"14910005-4696-4a60-b339-520415ba2765\",\r\n \"startTime\": \"2021-02-17T04:41:22.1863798Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5264,29 +5439,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11937" ], "x-ms-request-id": [ - "182e43ea-0fd1-47ab-909b-08308a05bcba" + "21abd323-a196-4a88-abae-185e7e6aae4c" ], "x-ms-correlation-request-id": [ - "182e43ea-0fd1-47ab-909b-08308a05bcba" + "21abd323-a196-4a88-abae-185e7e6aae4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230843Z:182e43ea-0fd1-47ab-909b-08308a05bcba" + "WESTUS:20210217T044202Z:21abd323-a196-4a88-abae-185e7e6aae4c" ], "Date": [ - "Mon, 31 Aug 2020 23:08:43 GMT" + "Wed, 17 Feb 2021 04:42:01 GMT" ], "Content-Length": [ "281" @@ -5298,20 +5474,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"14910005-4696-4a60-b339-520415ba2765\",\r\n \"startTime\": \"2021-02-17T04:41:22.1863798Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5321,29 +5500,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11936" ], "x-ms-request-id": [ - "023c4b6b-1c87-417b-8e32-7e406045f4b8" + "07d538d3-f69a-4fce-aba5-b8799eb15d1c" ], "x-ms-correlation-request-id": [ - "023c4b6b-1c87-417b-8e32-7e406045f4b8" + "07d538d3-f69a-4fce-aba5-b8799eb15d1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230903Z:023c4b6b-1c87-417b-8e32-7e406045f4b8" + "WESTUS:20210217T044222Z:07d538d3-f69a-4fce-aba5-b8799eb15d1c" ], "Date": [ - "Mon, 31 Aug 2020 23:09:03 GMT" + "Wed, 17 Feb 2021 04:42:22 GMT" ], "Content-Length": [ "281" @@ -5355,20 +5535,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"14910005-4696-4a60-b339-520415ba2765\",\r\n \"startTime\": \"2021-02-17T04:41:22.1863798Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5378,29 +5561,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11934" ], "x-ms-request-id": [ - "816e00a3-a0c5-4e12-aa20-19cde55ecc30" + "f66b2f66-d711-4745-a616-2ac39aa0d999" ], "x-ms-correlation-request-id": [ - "816e00a3-a0c5-4e12-aa20-19cde55ecc30" + "f66b2f66-d711-4745-a616-2ac39aa0d999" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230923Z:816e00a3-a0c5-4e12-aa20-19cde55ecc30" + "WESTUS:20210217T044243Z:f66b2f66-d711-4745-a616-2ac39aa0d999" ], "Date": [ - "Mon, 31 Aug 2020 23:09:23 GMT" + "Wed, 17 Feb 2021 04:42:42 GMT" ], "Content-Length": [ "281" @@ -5412,20 +5596,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"14910005-4696-4a60-b339-520415ba2765\",\r\n \"startTime\": \"2021-02-17T04:41:22.1863798Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5435,29 +5622,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11933" ], "x-ms-request-id": [ - "bb362399-e123-4171-a449-8140a42786d5" + "75da2a12-c8c5-4c8d-9309-eb540ea0e823" ], "x-ms-correlation-request-id": [ - "bb362399-e123-4171-a449-8140a42786d5" + "75da2a12-c8c5-4c8d-9309-eb540ea0e823" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T230944Z:bb362399-e123-4171-a449-8140a42786d5" + "WESTUS:20210217T044303Z:75da2a12-c8c5-4c8d-9309-eb540ea0e823" ], "Date": [ - "Mon, 31 Aug 2020 23:09:43 GMT" + "Wed, 17 Feb 2021 04:43:02 GMT" ], "Content-Length": [ "281" @@ -5469,20 +5657,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"14910005-4696-4a60-b339-520415ba2765\",\r\n \"startTime\": \"2021-02-17T04:41:22.1863798Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5492,29 +5683,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" ], "x-ms-request-id": [ - "0dccfe09-50f2-4514-b332-5702bc9aff1a" + "0cfa4b8d-e565-4850-9e6e-f423062f3c08" ], "x-ms-correlation-request-id": [ - "0dccfe09-50f2-4514-b332-5702bc9aff1a" + "0cfa4b8d-e565-4850-9e6e-f423062f3c08" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231004Z:0dccfe09-50f2-4514-b332-5702bc9aff1a" + "WESTUS:20210217T044323Z:0cfa4b8d-e565-4850-9e6e-f423062f3c08" ], "Date": [ - "Mon, 31 Aug 2020 23:10:03 GMT" + "Wed, 17 Feb 2021 04:43:22 GMT" ], "Content-Length": [ "294" @@ -5526,20 +5718,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"66890001-2f68-43ba-904d-c6b850534774\",\r\n \"startTime\": \"2020-08-31T23:07:43.4467991Z\",\r\n \"endTime\": \"2020-08-31T23:09:47.2962042Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"14910005-4696-4a60-b339-520415ba2765\",\r\n \"startTime\": \"2021-02-17T04:41:22.1863798Z\",\r\n \"endTime\": \"2021-02-17T04:43:22.8718564Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/66890001-2f68-43ba-904d-c6b850534774?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzY2ODkwMDAxLTJmNjgtNDNiYS05MDRkLWM2Yjg1MDUzNDc3ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/14910005-4696-4a60-b339-520415ba2765?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzE0OTEwMDA1LTQ2OTYtNGE2MC1iMzM5LTUyMDQxNWJhMjc2NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f129f008-6ea7-4c26-8613-613a1f5568dd" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5549,29 +5744,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11931" ], "x-ms-request-id": [ - "c88ebbbf-7812-4f31-9799-29fa7c136cf9" + "40f8284c-5a0d-4a8c-a5d2-8469f94171d2" ], "x-ms-correlation-request-id": [ - "c88ebbbf-7812-4f31-9799-29fa7c136cf9" + "40f8284c-5a0d-4a8c-a5d2-8469f94171d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231004Z:c88ebbbf-7812-4f31-9799-29fa7c136cf9" + "WESTUS:20210217T044323Z:40f8284c-5a0d-4a8c-a5d2-8469f94171d2" ], "Date": [ - "Mon, 31 Aug 2020 23:10:03 GMT" + "Wed, 17 Feb 2021 04:43:22 GMT" ], "Expires": [ "-1" @@ -5581,22 +5777,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt/reimage?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQvcmVpbWFnZT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt/reimage?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQvcmVpbWFnZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodes\": [\r\n \"snt_3\"\r\n ],\r\n \"force\": false\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a24f8701-a2e6-49f3-babe-fdef18f162fd" + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5613,34 +5809,35 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "2e3a48af-5c56-475e-a64a-3430cb632d19" + "393d8abe-f3b6-4909-8b5e-002bce458920" ], "x-ms-correlation-request-id": [ - "2e3a48af-5c56-475e-a64a-3430cb632d19" + "393d8abe-f3b6-4909-8b5e-002bce458920" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231004Z:2e3a48af-5c56-475e-a64a-3430cb632d19" + "WESTUS:20210217T044324Z:393d8abe-f3b6-4909-8b5e-002bce458920" ], "Date": [ - "Mon, 31 Aug 2020 23:10:04 GMT" + "Wed, 17 Feb 2021 04:43:23 GMT" ], "Content-Length": [ "2" @@ -5656,16 +5853,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5675,32 +5875,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11930" ], "x-ms-request-id": [ - "c10bb650-f56a-4b3e-813f-521893b3c24a" + "c49c5a7d-4217-46c4-b573-371fb3406126" ], "x-ms-correlation-request-id": [ - "c10bb650-f56a-4b3e-813f-521893b3c24a" + "c49c5a7d-4217-46c4-b573-371fb3406126" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231024Z:c10bb650-f56a-4b3e-813f-521893b3c24a" + "WESTUS:20210217T044344Z:c49c5a7d-4217-46c4-b573-371fb3406126" ], "Date": [ - "Mon, 31 Aug 2020 23:10:24 GMT" + "Wed, 17 Feb 2021 04:43:43 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5709,20 +5910,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5732,32 +5936,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11929" ], "x-ms-request-id": [ - "eb72f58d-0900-46b1-8bd5-2a3d483bd5e0" + "5f5442db-826e-496a-8c18-30df0d892e3c" ], "x-ms-correlation-request-id": [ - "eb72f58d-0900-46b1-8bd5-2a3d483bd5e0" + "5f5442db-826e-496a-8c18-30df0d892e3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231044Z:eb72f58d-0900-46b1-8bd5-2a3d483bd5e0" + "WESTUS:20210217T044404Z:5f5442db-826e-496a-8c18-30df0d892e3c" ], "Date": [ - "Mon, 31 Aug 2020 23:10:43 GMT" + "Wed, 17 Feb 2021 04:44:04 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5766,20 +5971,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5789,32 +5997,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11928" ], "x-ms-request-id": [ - "2d6c869a-a945-4841-805a-d36acd363084" + "b3e68e86-c0a1-4992-a09a-c2c1ce4418f0" ], "x-ms-correlation-request-id": [ - "2d6c869a-a945-4841-805a-d36acd363084" + "b3e68e86-c0a1-4992-a09a-c2c1ce4418f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231104Z:2d6c869a-a945-4841-805a-d36acd363084" + "WESTUS:20210217T044424Z:b3e68e86-c0a1-4992-a09a-c2c1ce4418f0" ], "Date": [ - "Mon, 31 Aug 2020 23:11:04 GMT" + "Wed, 17 Feb 2021 04:44:24 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5823,20 +6032,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5846,32 +6058,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11927" ], "x-ms-request-id": [ - "ad3c2fe1-f66c-4cdf-b7dc-a86447e7c856" + "940af260-b950-4a07-b357-8b3c93507695" ], "x-ms-correlation-request-id": [ - "ad3c2fe1-f66c-4cdf-b7dc-a86447e7c856" + "940af260-b950-4a07-b357-8b3c93507695" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231124Z:ad3c2fe1-f66c-4cdf-b7dc-a86447e7c856" + "WESTUS:20210217T044444Z:940af260-b950-4a07-b357-8b3c93507695" ], "Date": [ - "Mon, 31 Aug 2020 23:11:24 GMT" + "Wed, 17 Feb 2021 04:44:44 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5880,20 +6093,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5903,32 +6119,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11926" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c966d233-3bc4-41c3-899b-2fe91417dc58" + "a012b01a-1776-4de9-ac28-89cafb443197" ], "x-ms-correlation-request-id": [ - "c966d233-3bc4-41c3-899b-2fe91417dc58" + "a012b01a-1776-4de9-ac28-89cafb443197" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231145Z:c966d233-3bc4-41c3-899b-2fe91417dc58" + "WESTUS:20210217T044504Z:a012b01a-1776-4de9-ac28-89cafb443197" ], "Date": [ - "Mon, 31 Aug 2020 23:11:44 GMT" + "Wed, 17 Feb 2021 04:45:04 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5937,20 +6154,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -5960,32 +6180,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11925" ], "x-ms-request-id": [ - "13c49471-657a-4fdd-a652-c2c165b8f462" + "dbeb32d7-ccb7-4182-aad1-3f8c5bfd477c" ], "x-ms-correlation-request-id": [ - "13c49471-657a-4fdd-a652-c2c165b8f462" + "dbeb32d7-ccb7-4182-aad1-3f8c5bfd477c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231205Z:13c49471-657a-4fdd-a652-c2c165b8f462" + "WESTUS:20210217T044525Z:dbeb32d7-ccb7-4182-aad1-3f8c5bfd477c" ], "Date": [ - "Mon, 31 Aug 2020 23:12:04 GMT" + "Wed, 17 Feb 2021 04:45:25 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5994,20 +6215,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6017,32 +6241,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11924" ], "x-ms-request-id": [ - "17b7dcd5-0e76-41c4-8cf1-b7263271b757" + "4951522b-ab7c-44a0-91da-b2e991c2b902" ], "x-ms-correlation-request-id": [ - "17b7dcd5-0e76-41c4-8cf1-b7263271b757" + "4951522b-ab7c-44a0-91da-b2e991c2b902" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231226Z:17b7dcd5-0e76-41c4-8cf1-b7263271b757" + "WESTUS:20210217T044545Z:4951522b-ab7c-44a0-91da-b2e991c2b902" ], "Date": [ - "Mon, 31 Aug 2020 23:12:25 GMT" + "Wed, 17 Feb 2021 04:45:45 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6051,20 +6276,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6074,32 +6302,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11923" ], "x-ms-request-id": [ - "4110df19-8bf7-43d5-8d8e-5cb952f92740" + "1627fa39-3ea0-4082-a4b5-3306f07240ef" ], "x-ms-correlation-request-id": [ - "4110df19-8bf7-43d5-8d8e-5cb952f92740" + "1627fa39-3ea0-4082-a4b5-3306f07240ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231246Z:4110df19-8bf7-43d5-8d8e-5cb952f92740" + "WESTUS:20210217T044606Z:1627fa39-3ea0-4082-a4b5-3306f07240ef" ], "Date": [ - "Mon, 31 Aug 2020 23:12:45 GMT" + "Wed, 17 Feb 2021 04:46:05 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6108,20 +6337,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6131,32 +6363,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11922" ], "x-ms-request-id": [ - "48b1e494-3042-40cb-a8ac-3fa19b85dc0f" + "05d79304-bd84-4706-90e6-1562fb579c5f" ], "x-ms-correlation-request-id": [ - "48b1e494-3042-40cb-a8ac-3fa19b85dc0f" + "05d79304-bd84-4706-90e6-1562fb579c5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231306Z:48b1e494-3042-40cb-a8ac-3fa19b85dc0f" + "WESTUS:20210217T044626Z:05d79304-bd84-4706-90e6-1562fb579c5f" ], "Date": [ - "Mon, 31 Aug 2020 23:13:05 GMT" + "Wed, 17 Feb 2021 04:46:25 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6165,20 +6398,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6188,32 +6424,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11921" ], "x-ms-request-id": [ - "3ec30b57-32dd-4b94-960f-b256d5dbd3d4" + "fad505d2-c80d-44f0-9009-f5d77ec46e86" ], "x-ms-correlation-request-id": [ - "3ec30b57-32dd-4b94-960f-b256d5dbd3d4" + "fad505d2-c80d-44f0-9009-f5d77ec46e86" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231326Z:3ec30b57-32dd-4b94-960f-b256d5dbd3d4" + "WESTUS:20210217T044646Z:fad505d2-c80d-44f0-9009-f5d77ec46e86" ], "Date": [ - "Mon, 31 Aug 2020 23:13:25 GMT" + "Wed, 17 Feb 2021 04:46:45 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6222,20 +6459,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6245,32 +6485,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11919" ], "x-ms-request-id": [ - "8160e502-2794-4fd4-a6e4-d30089c4a923" + "3a9845b5-a9a9-403d-97fb-bf2e8e53970b" ], "x-ms-correlation-request-id": [ - "8160e502-2794-4fd4-a6e4-d30089c4a923" + "3a9845b5-a9a9-403d-97fb-bf2e8e53970b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231346Z:8160e502-2794-4fd4-a6e4-d30089c4a923" + "WESTUS:20210217T044706Z:3a9845b5-a9a9-403d-97fb-bf2e8e53970b" ], "Date": [ - "Mon, 31 Aug 2020 23:13:45 GMT" + "Wed, 17 Feb 2021 04:47:06 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6279,20 +6520,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6302,32 +6546,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11918" ], "x-ms-request-id": [ - "5dbae8a8-9e00-4a69-8a8b-7e63ca27a7dc" + "ff94a744-fe70-4df2-9d8d-0a767c2f234f" ], "x-ms-correlation-request-id": [ - "5dbae8a8-9e00-4a69-8a8b-7e63ca27a7dc" + "ff94a744-fe70-4df2-9d8d-0a767c2f234f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231406Z:5dbae8a8-9e00-4a69-8a8b-7e63ca27a7dc" + "WESTUS:20210217T044726Z:ff94a744-fe70-4df2-9d8d-0a767c2f234f" ], "Date": [ - "Mon, 31 Aug 2020 23:14:06 GMT" + "Wed, 17 Feb 2021 04:47:26 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6336,20 +6581,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6359,32 +6607,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11916" ], "x-ms-request-id": [ - "3bcb38a6-5cf9-4da2-8ff6-418995153462" + "2d0fb31b-a581-4111-92b9-9ae3962350db" ], "x-ms-correlation-request-id": [ - "3bcb38a6-5cf9-4da2-8ff6-418995153462" + "2d0fb31b-a581-4111-92b9-9ae3962350db" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231426Z:3bcb38a6-5cf9-4da2-8ff6-418995153462" + "WESTUS:20210217T044746Z:2d0fb31b-a581-4111-92b9-9ae3962350db" ], "Date": [ - "Mon, 31 Aug 2020 23:14:26 GMT" + "Wed, 17 Feb 2021 04:47:46 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6393,20 +6642,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6416,32 +6668,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11915" ], "x-ms-request-id": [ - "12ba1357-fae3-4626-9fc7-ed25b74eb32f" + "cab99676-0104-4414-8ca1-ebada16f968b" ], "x-ms-correlation-request-id": [ - "12ba1357-fae3-4626-9fc7-ed25b74eb32f" + "cab99676-0104-4414-8ca1-ebada16f968b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231446Z:12ba1357-fae3-4626-9fc7-ed25b74eb32f" + "WESTUS:20210217T044807Z:cab99676-0104-4414-8ca1-ebada16f968b" ], "Date": [ - "Mon, 31 Aug 2020 23:14:46 GMT" + "Wed, 17 Feb 2021 04:48:06 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6450,20 +6703,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6473,32 +6729,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11914" ], "x-ms-request-id": [ - "53aa7d91-b6a6-47dc-9b0d-513ca7153b6d" + "b7c1c9ff-e4d3-4838-8daf-bf11e97b1c44" ], "x-ms-correlation-request-id": [ - "53aa7d91-b6a6-47dc-9b0d-513ca7153b6d" + "b7c1c9ff-e4d3-4838-8daf-bf11e97b1c44" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231507Z:53aa7d91-b6a6-47dc-9b0d-513ca7153b6d" + "WESTUS:20210217T044827Z:b7c1c9ff-e4d3-4838-8daf-bf11e97b1c44" ], "Date": [ - "Mon, 31 Aug 2020 23:15:06 GMT" + "Wed, 17 Feb 2021 04:48:26 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6507,20 +6764,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6530,32 +6790,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11913" ], "x-ms-request-id": [ - "1c8f03e2-4c5f-4945-b502-bd223ac1af98" + "489e6fc1-3452-4411-9055-ef328db74536" ], "x-ms-correlation-request-id": [ - "1c8f03e2-4c5f-4945-b502-bd223ac1af98" + "489e6fc1-3452-4411-9055-ef328db74536" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231527Z:1c8f03e2-4c5f-4945-b502-bd223ac1af98" + "WESTUS:20210217T044847Z:489e6fc1-3452-4411-9055-ef328db74536" ], "Date": [ - "Mon, 31 Aug 2020 23:15:26 GMT" + "Wed, 17 Feb 2021 04:48:46 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6564,20 +6825,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6587,32 +6851,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11912" ], "x-ms-request-id": [ - "097d3f57-13fc-468c-97ca-1547dc1a7d53" + "efeca296-21b8-4519-ae16-7e6314c23897" ], "x-ms-correlation-request-id": [ - "097d3f57-13fc-468c-97ca-1547dc1a7d53" + "efeca296-21b8-4519-ae16-7e6314c23897" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231547Z:097d3f57-13fc-468c-97ca-1547dc1a7d53" + "WESTUS:20210217T044907Z:efeca296-21b8-4519-ae16-7e6314c23897" ], "Date": [ - "Mon, 31 Aug 2020 23:15:46 GMT" + "Wed, 17 Feb 2021 04:49:06 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6621,20 +6886,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6644,32 +6912,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11911" ], "x-ms-request-id": [ - "09506ae7-cd1d-4c55-b742-aecd6731967e" + "66d58dfc-4538-42f7-9c14-af7e7cb2f0fe" ], "x-ms-correlation-request-id": [ - "09506ae7-cd1d-4c55-b742-aecd6731967e" + "66d58dfc-4538-42f7-9c14-af7e7cb2f0fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231607Z:09506ae7-cd1d-4c55-b742-aecd6731967e" + "WESTUS:20210217T044927Z:66d58dfc-4538-42f7-9c14-af7e7cb2f0fe" ], "Date": [ - "Mon, 31 Aug 2020 23:16:06 GMT" + "Wed, 17 Feb 2021 04:49:26 GMT" ], "Content-Length": [ - "282" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6678,20 +6947,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6701,32 +6973,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11910" ], "x-ms-request-id": [ - "d6a9253f-725d-4419-8fd8-dd68d12ceaba" + "ccb47847-a5ad-44de-88e7-7de560bf80a6" ], "x-ms-correlation-request-id": [ - "d6a9253f-725d-4419-8fd8-dd68d12ceaba" + "ccb47847-a5ad-44de-88e7-7de560bf80a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231627Z:d6a9253f-725d-4419-8fd8-dd68d12ceaba" + "WESTUS:20210217T044947Z:ccb47847-a5ad-44de-88e7-7de560bf80a6" ], "Date": [ - "Mon, 31 Aug 2020 23:16:26 GMT" + "Wed, 17 Feb 2021 04:49:47 GMT" ], "Content-Length": [ - "282" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6735,20 +7008,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6758,32 +7034,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11909" ], "x-ms-request-id": [ - "5130116d-fdfa-4859-bf5d-fefd59d19569" + "11632795-abf7-440e-98b0-db5639f6bb06" ], "x-ms-correlation-request-id": [ - "5130116d-fdfa-4859-bf5d-fefd59d19569" + "11632795-abf7-440e-98b0-db5639f6bb06" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231647Z:5130116d-fdfa-4859-bf5d-fefd59d19569" + "WESTUS:20210217T045008Z:11632795-abf7-440e-98b0-db5639f6bb06" ], "Date": [ - "Mon, 31 Aug 2020 23:16:47 GMT" + "Wed, 17 Feb 2021 04:50:07 GMT" ], "Content-Length": [ - "282" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6792,20 +7069,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6815,32 +7095,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11908" ], "x-ms-request-id": [ - "409d5922-5b6e-46fe-b3af-d4a25ee9e0f7" + "2f1cf74f-bc1a-4343-be2e-ef9a2c52d0d8" ], "x-ms-correlation-request-id": [ - "409d5922-5b6e-46fe-b3af-d4a25ee9e0f7" + "2f1cf74f-bc1a-4343-be2e-ef9a2c52d0d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231707Z:409d5922-5b6e-46fe-b3af-d4a25ee9e0f7" + "WESTUS:20210217T045028Z:2f1cf74f-bc1a-4343-be2e-ef9a2c52d0d8" ], "Date": [ - "Mon, 31 Aug 2020 23:17:07 GMT" + "Wed, 17 Feb 2021 04:50:27 GMT" ], "Content-Length": [ - "294" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6849,20 +7130,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3dab0001-d5e8-453f-831f-6a21ce51e493\",\r\n \"startTime\": \"2020-08-31T23:10:04.5812899Z\",\r\n \"endTime\": \"2020-08-31T23:17:05.9450897Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/3dab0001-d5e8-453f-831f-6a21ce51e493?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzNkYWIwMDAxLWQ1ZTgtNDUzZi04MzFmLTZhMjFjZTUxZTQ5Mz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6872,54 +7156,58 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11907" ], "x-ms-request-id": [ - "f7b3fd20-c1a8-4472-9f20-bf96c4d6ff35" + "0952cdd5-a047-435a-9139-277a9156571b" ], "x-ms-correlation-request-id": [ - "f7b3fd20-c1a8-4472-9f20-bf96c4d6ff35" + "0952cdd5-a047-435a-9139-277a9156571b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231707Z:f7b3fd20-c1a8-4472-9f20-bf96c4d6ff35" + "WESTUS:20210217T045048Z:0952cdd5-a047-435a-9139-277a9156571b" ], "Date": [ - "Mon, 31 Aug 2020 23:17:07 GMT" + "Wed, 17 Feb 2021 04:50:47 GMT" + ], + "Content-Length": [ + "280" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodeTypes/snt?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0L25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87801dec-dd49-4e25-a413-00e9e641ad2e" - ], - "Accept-Language": [ - "en-US" + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6929,38 +7217,33 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" ], "x-ms-request-id": [ - "13a563da-8950-4e6b-8e76-d87a46d596c4" + "3028049a-2d7d-4037-b2e2-ebce29caceaf" ], "x-ms-correlation-request-id": [ - "13a563da-8950-4e6b-8e76-d87a46d596c4" + "3028049a-2d7d-4037-b2e2-ebce29caceaf" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231708Z:13a563da-8950-4e6b-8e76-d87a46d596c4" + "WESTUS:20210217T045108Z:3028049a-2d7d-4037-b2e2-ebce29caceaf" ], "Date": [ - "Mon, 31 Aug 2020 23:17:07 GMT" + "Wed, 17 Feb 2021 04:51:07 GMT" ], "Content-Length": [ - "694" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6969,20 +7252,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -6992,32 +7278,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11905" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6abce946-8118-41bf-87e8-be7ab87e5a83" + "d83fc6e3-8834-4e22-b6ab-bfe88a5d7510" ], "x-ms-correlation-request-id": [ - "6abce946-8118-41bf-87e8-be7ab87e5a83" + "d83fc6e3-8834-4e22-b6ab-bfe88a5d7510" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231728Z:6abce946-8118-41bf-87e8-be7ab87e5a83" + "WESTUS:20210217T045128Z:d83fc6e3-8834-4e22-b6ab-bfe88a5d7510" ], "Date": [ - "Mon, 31 Aug 2020 23:17:27 GMT" + "Wed, 17 Feb 2021 04:51:27 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7026,20 +7313,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7049,32 +7339,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11904" ], "x-ms-request-id": [ - "f1742a24-b594-424a-8909-582bfc90eeb5" + "9c174ce0-0b13-4fad-8c02-ef779c75c503" ], "x-ms-correlation-request-id": [ - "f1742a24-b594-424a-8909-582bfc90eeb5" + "9c174ce0-0b13-4fad-8c02-ef779c75c503" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231748Z:f1742a24-b594-424a-8909-582bfc90eeb5" + "WESTUS:20210217T045149Z:9c174ce0-0b13-4fad-8c02-ef779c75c503" ], "Date": [ - "Mon, 31 Aug 2020 23:17:47 GMT" + "Wed, 17 Feb 2021 04:51:49 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7083,20 +7374,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7106,32 +7400,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" ], "x-ms-request-id": [ - "c806c4f5-9f7d-41a5-bcd7-cbba369b0420" + "60614938-a7d2-4c97-98fe-d5c1d465538a" ], "x-ms-correlation-request-id": [ - "c806c4f5-9f7d-41a5-bcd7-cbba369b0420" + "60614938-a7d2-4c97-98fe-d5c1d465538a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231808Z:c806c4f5-9f7d-41a5-bcd7-cbba369b0420" + "WESTUS:20210217T045209Z:60614938-a7d2-4c97-98fe-d5c1d465538a" ], "Date": [ - "Mon, 31 Aug 2020 23:18:07 GMT" + "Wed, 17 Feb 2021 04:52:09 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7140,20 +7435,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7163,32 +7461,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11902" ], "x-ms-request-id": [ - "28229790-69a1-42da-9af3-f9b013c448c4" + "d226704b-cc6a-455c-8da7-1b7618041fa8" ], "x-ms-correlation-request-id": [ - "28229790-69a1-42da-9af3-f9b013c448c4" + "d226704b-cc6a-455c-8da7-1b7618041fa8" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231828Z:28229790-69a1-42da-9af3-f9b013c448c4" + "WESTUS:20210217T045230Z:d226704b-cc6a-455c-8da7-1b7618041fa8" ], "Date": [ - "Mon, 31 Aug 2020 23:18:28 GMT" + "Wed, 17 Feb 2021 04:52:29 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7197,20 +7496,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7220,32 +7522,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11901" ], "x-ms-request-id": [ - "515e5b51-a501-4e3e-b950-e568c1d36a50" + "3933108b-ee5c-4c78-86b6-3c6c13f4e137" ], "x-ms-correlation-request-id": [ - "515e5b51-a501-4e3e-b950-e568c1d36a50" + "3933108b-ee5c-4c78-86b6-3c6c13f4e137" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231848Z:515e5b51-a501-4e3e-b950-e568c1d36a50" + "WESTUS:20210217T045250Z:3933108b-ee5c-4c78-86b6-3c6c13f4e137" ], "Date": [ - "Mon, 31 Aug 2020 23:18:48 GMT" + "Wed, 17 Feb 2021 04:52:49 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7254,20 +7557,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7277,32 +7583,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11899" ], "x-ms-request-id": [ - "db578023-a429-4e4e-8fc9-bca94da17eb5" + "471400a7-dc8f-4861-a590-38ad5b5e4f5d" ], "x-ms-correlation-request-id": [ - "db578023-a429-4e4e-8fc9-bca94da17eb5" + "471400a7-dc8f-4861-a590-38ad5b5e4f5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231908Z:db578023-a429-4e4e-8fc9-bca94da17eb5" + "WESTUS:20210217T045310Z:471400a7-dc8f-4861-a590-38ad5b5e4f5d" ], "Date": [ - "Mon, 31 Aug 2020 23:19:08 GMT" + "Wed, 17 Feb 2021 04:53:09 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7311,20 +7618,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7334,32 +7644,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11898" ], "x-ms-request-id": [ - "f8d01166-6bfb-4335-ae04-f23841a57479" + "1f37612b-6791-456c-953e-509de6044a8a" ], "x-ms-correlation-request-id": [ - "f8d01166-6bfb-4335-ae04-f23841a57479" + "1f37612b-6791-456c-953e-509de6044a8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231929Z:f8d01166-6bfb-4335-ae04-f23841a57479" + "WESTUS:20210217T045330Z:1f37612b-6791-456c-953e-509de6044a8a" ], "Date": [ - "Mon, 31 Aug 2020 23:19:28 GMT" + "Wed, 17 Feb 2021 04:53:29 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7368,20 +7679,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7391,32 +7705,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11897" ], "x-ms-request-id": [ - "2f7bfd05-1a9d-4889-9213-993347ce4688" + "6dd02c91-8220-4bf7-8bae-8da575d8d2ff" ], "x-ms-correlation-request-id": [ - "2f7bfd05-1a9d-4889-9213-993347ce4688" + "6dd02c91-8220-4bf7-8bae-8da575d8d2ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T231949Z:2f7bfd05-1a9d-4889-9213-993347ce4688" + "WESTUS:20210217T045350Z:6dd02c91-8220-4bf7-8bae-8da575d8d2ff" ], "Date": [ - "Mon, 31 Aug 2020 23:19:48 GMT" + "Wed, 17 Feb 2021 04:53:50 GMT" ], "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7425,20 +7740,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7448,32 +7766,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11896" ], "x-ms-request-id": [ - "2eaac740-79de-4add-a39e-db4d8b0fcdee" + "303eed60-553a-4991-86d2-1cbdc62616e8" ], "x-ms-correlation-request-id": [ - "2eaac740-79de-4add-a39e-db4d8b0fcdee" + "303eed60-553a-4991-86d2-1cbdc62616e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232009Z:2eaac740-79de-4add-a39e-db4d8b0fcdee" + "WESTUS:20210217T045410Z:303eed60-553a-4991-86d2-1cbdc62616e8" ], "Date": [ - "Mon, 31 Aug 2020 23:20:08 GMT" + "Wed, 17 Feb 2021 04:54:10 GMT" ], "Content-Length": [ - "281" + "293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7482,20 +7801,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"e7a30005-39cc-491f-bf99-ae05670cb047\",\r\n \"startTime\": \"2021-02-17T04:43:23.949996Z\",\r\n \"endTime\": \"2021-02-17T04:53:54.9685158Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/e7a30005-39cc-491f-bf99-ae05670cb047?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2U3YTMwMDA1LTM5Y2MtNDkxZi1iZjk5LWFlMDU2NzBjYjA0Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd7f5f0-60a2-4fe9-b6e5-43e7725f6528" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7505,54 +7827,55 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11895" ], "x-ms-request-id": [ - "d05dd60f-9604-4575-8dc8-e2c70935f813" + "36367e42-1503-4b35-9cb0-8229a743164d" ], "x-ms-correlation-request-id": [ - "d05dd60f-9604-4575-8dc8-e2c70935f813" + "36367e42-1503-4b35-9cb0-8229a743164d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232029Z:d05dd60f-9604-4575-8dc8-e2c70935f813" + "WESTUS:20210217T045411Z:36367e42-1503-4b35-9cb0-8229a743164d" ], "Date": [ - "Mon, 31 Aug 2020 23:20:28 GMT" - ], - "Content-Length": [ - "281" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 17 Feb 2021 04:54:10 GMT" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodeTypes/snt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzL25vZGVUeXBlcy9zbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7562,32 +7885,39 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "7611ad47-7f2b-43c2-a62a-99fd666c489f" + "480b3e70-ebf9-4517-ad35-584e8b832fc5" ], "x-ms-correlation-request-id": [ - "7611ad47-7f2b-43c2-a62a-99fd666c489f" + "480b3e70-ebf9-4517-ad35-584e8b832fc5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232049Z:7611ad47-7f2b-43c2-a62a-99fd666c489f" + "WESTUS:20210217T045411Z:480b3e70-ebf9-4517-ad35-584e8b832fc5" ], "Date": [ - "Mon, 31 Aug 2020 23:20:48 GMT" + "Wed, 17 Feb 2021 04:54:11 GMT" ], "Content-Length": [ - "281" + "694" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7596,20 +7926,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793/nodetypes/snt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7619,29 +7952,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11893" ], "x-ms-request-id": [ - "4c6f583f-f2ae-441c-8c02-69e7bb807878" + "bd91a548-bea4-4fc5-b33e-f5759d66305f" ], "x-ms-correlation-request-id": [ - "4c6f583f-f2ae-441c-8c02-69e7bb807878" + "bd91a548-bea4-4fc5-b33e-f5759d66305f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232109Z:4c6f583f-f2ae-441c-8c02-69e7bb807878" + "WESTUS:20210217T045432Z:bd91a548-bea4-4fc5-b33e-f5759d66305f" ], "Date": [ - "Mon, 31 Aug 2020 23:21:08 GMT" + "Wed, 17 Feb 2021 04:54:31 GMT" ], "Content-Length": [ "281" @@ -7653,20 +7987,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7676,29 +8013,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11892" ], "x-ms-request-id": [ - "5a58f844-df0a-43ce-a3a9-499037755cd9" + "4a916dd1-ba0b-4792-8946-0960ff3997a0" ], "x-ms-correlation-request-id": [ - "5a58f844-df0a-43ce-a3a9-499037755cd9" + "4a916dd1-ba0b-4792-8946-0960ff3997a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232129Z:5a58f844-df0a-43ce-a3a9-499037755cd9" + "WESTUS:20210217T045452Z:4a916dd1-ba0b-4792-8946-0960ff3997a0" ], "Date": [ - "Mon, 31 Aug 2020 23:21:28 GMT" + "Wed, 17 Feb 2021 04:54:51 GMT" ], "Content-Length": [ "281" @@ -7710,20 +8048,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7733,29 +8074,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11891" ], "x-ms-request-id": [ - "49f77641-7028-4941-98c4-80dea11f7edf" + "2a0ddca8-7cf8-45cd-bff6-29c438333ce0" ], "x-ms-correlation-request-id": [ - "49f77641-7028-4941-98c4-80dea11f7edf" + "2a0ddca8-7cf8-45cd-bff6-29c438333ce0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232149Z:49f77641-7028-4941-98c4-80dea11f7edf" + "WESTUS:20210217T045512Z:2a0ddca8-7cf8-45cd-bff6-29c438333ce0" ], "Date": [ - "Mon, 31 Aug 2020 23:21:49 GMT" + "Wed, 17 Feb 2021 04:55:11 GMT" ], "Content-Length": [ "281" @@ -7767,20 +8109,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7790,29 +8135,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11890" ], "x-ms-request-id": [ - "e255c395-8d84-4a99-9b81-4bbf1b9bbff6" + "010efce7-dcbd-43f7-bc3a-f21793b514eb" ], "x-ms-correlation-request-id": [ - "e255c395-8d84-4a99-9b81-4bbf1b9bbff6" + "010efce7-dcbd-43f7-bc3a-f21793b514eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232209Z:e255c395-8d84-4a99-9b81-4bbf1b9bbff6" + "WESTUS:20210217T045532Z:010efce7-dcbd-43f7-bc3a-f21793b514eb" ], "Date": [ - "Mon, 31 Aug 2020 23:22:09 GMT" + "Wed, 17 Feb 2021 04:55:32 GMT" ], "Content-Length": [ "281" @@ -7824,20 +8170,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7847,29 +8196,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11889" ], "x-ms-request-id": [ - "0a71b26e-6f04-48b1-b992-e8902ff15561" + "1d0432cf-e3b8-4d25-99fc-f25644814723" ], "x-ms-correlation-request-id": [ - "0a71b26e-6f04-48b1-b992-e8902ff15561" + "1d0432cf-e3b8-4d25-99fc-f25644814723" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232229Z:0a71b26e-6f04-48b1-b992-e8902ff15561" + "WESTUS:20210217T045552Z:1d0432cf-e3b8-4d25-99fc-f25644814723" ], "Date": [ - "Mon, 31 Aug 2020 23:22:29 GMT" + "Wed, 17 Feb 2021 04:55:52 GMT" ], "Content-Length": [ "281" @@ -7881,20 +8231,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7904,29 +8257,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11888" ], "x-ms-request-id": [ - "8198a5de-33b1-45cc-9c34-79986de9ffbf" + "2176507f-d683-46ef-ba40-c742aeccd7ea" ], "x-ms-correlation-request-id": [ - "8198a5de-33b1-45cc-9c34-79986de9ffbf" + "2176507f-d683-46ef-ba40-c742aeccd7ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232250Z:8198a5de-33b1-45cc-9c34-79986de9ffbf" + "WESTUS:20210217T045612Z:2176507f-d683-46ef-ba40-c742aeccd7ea" ], "Date": [ - "Mon, 31 Aug 2020 23:22:49 GMT" + "Wed, 17 Feb 2021 04:56:12 GMT" ], "Content-Length": [ "281" @@ -7938,20 +8292,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -7961,29 +8318,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11887" ], "x-ms-request-id": [ - "e7d0f3d9-c2bc-4eee-b079-ff5b01f27ed8" + "308a48b0-be5f-4254-b7d0-e3b674e0c310" ], "x-ms-correlation-request-id": [ - "e7d0f3d9-c2bc-4eee-b079-ff5b01f27ed8" + "308a48b0-be5f-4254-b7d0-e3b674e0c310" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232310Z:e7d0f3d9-c2bc-4eee-b079-ff5b01f27ed8" + "WESTUS:20210217T045633Z:308a48b0-be5f-4254-b7d0-e3b674e0c310" ], "Date": [ - "Mon, 31 Aug 2020 23:23:09 GMT" + "Wed, 17 Feb 2021 04:56:32 GMT" ], "Content-Length": [ "281" @@ -7995,20 +8353,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8018,29 +8379,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11886" ], "x-ms-request-id": [ - "01a6f014-8465-483e-9b01-a3b331b4b8af" + "a5d011b0-c315-47cd-9067-43b5a1ffcb40" ], "x-ms-correlation-request-id": [ - "01a6f014-8465-483e-9b01-a3b331b4b8af" + "a5d011b0-c315-47cd-9067-43b5a1ffcb40" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232330Z:01a6f014-8465-483e-9b01-a3b331b4b8af" + "WESTUS:20210217T045653Z:a5d011b0-c315-47cd-9067-43b5a1ffcb40" ], "Date": [ - "Mon, 31 Aug 2020 23:23:29 GMT" + "Wed, 17 Feb 2021 04:56:52 GMT" ], "Content-Length": [ "281" @@ -8052,20 +8414,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8075,29 +8440,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11885" ], "x-ms-request-id": [ - "bbc3f3ca-6ba8-44ea-8592-2b3203ec23d9" + "7e7febec-4ddd-4379-93f7-601b47b37789" ], "x-ms-correlation-request-id": [ - "bbc3f3ca-6ba8-44ea-8592-2b3203ec23d9" + "7e7febec-4ddd-4379-93f7-601b47b37789" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232350Z:bbc3f3ca-6ba8-44ea-8592-2b3203ec23d9" + "WESTUS:20210217T045713Z:7e7febec-4ddd-4379-93f7-601b47b37789" ], "Date": [ - "Mon, 31 Aug 2020 23:23:50 GMT" + "Wed, 17 Feb 2021 04:57:13 GMT" ], "Content-Length": [ "281" @@ -8109,20 +8475,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8132,29 +8501,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11884" ], "x-ms-request-id": [ - "44d4cda4-1c4a-4148-a801-df7614f1d49f" + "8369a196-47f2-462a-a990-8375759fae25" ], "x-ms-correlation-request-id": [ - "44d4cda4-1c4a-4148-a801-df7614f1d49f" + "8369a196-47f2-462a-a990-8375759fae25" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232410Z:44d4cda4-1c4a-4148-a801-df7614f1d49f" + "WESTUS:20210217T045733Z:8369a196-47f2-462a-a990-8375759fae25" ], "Date": [ - "Mon, 31 Aug 2020 23:24:10 GMT" + "Wed, 17 Feb 2021 04:57:33 GMT" ], "Content-Length": [ "281" @@ -8166,20 +8536,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8189,29 +8562,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11883" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bd35ad23-341e-402a-be5f-3094ba4222f7" + "eb740aaf-e8dc-47c4-b9ed-03a93601a35c" ], "x-ms-correlation-request-id": [ - "bd35ad23-341e-402a-be5f-3094ba4222f7" + "eb740aaf-e8dc-47c4-b9ed-03a93601a35c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232430Z:bd35ad23-341e-402a-be5f-3094ba4222f7" + "WESTUS:20210217T045753Z:eb740aaf-e8dc-47c4-b9ed-03a93601a35c" ], "Date": [ - "Mon, 31 Aug 2020 23:24:30 GMT" + "Wed, 17 Feb 2021 04:57:53 GMT" ], "Content-Length": [ "281" @@ -8223,20 +8597,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8246,29 +8623,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11882" ], "x-ms-request-id": [ - "fa392241-f4e8-48f7-91db-256aec7dedf8" + "51966045-302c-4ab8-b4b8-86e3477132c1" ], "x-ms-correlation-request-id": [ - "fa392241-f4e8-48f7-91db-256aec7dedf8" + "51966045-302c-4ab8-b4b8-86e3477132c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232450Z:fa392241-f4e8-48f7-91db-256aec7dedf8" + "WESTUS:20210217T045814Z:51966045-302c-4ab8-b4b8-86e3477132c1" ], "Date": [ - "Mon, 31 Aug 2020 23:24:50 GMT" + "Wed, 17 Feb 2021 04:58:14 GMT" ], "Content-Length": [ "281" @@ -8280,20 +8658,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8303,29 +8684,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11881" ], "x-ms-request-id": [ - "7d9a6db7-e34d-4527-a5d6-dc72f7742d83" + "e4b0b966-4784-429c-b9bd-b6edb433aa49" ], "x-ms-correlation-request-id": [ - "7d9a6db7-e34d-4527-a5d6-dc72f7742d83" + "e4b0b966-4784-429c-b9bd-b6edb433aa49" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232510Z:7d9a6db7-e34d-4527-a5d6-dc72f7742d83" + "WESTUS:20210217T045834Z:e4b0b966-4784-429c-b9bd-b6edb433aa49" ], "Date": [ - "Mon, 31 Aug 2020 23:25:10 GMT" + "Wed, 17 Feb 2021 04:58:34 GMT" ], "Content-Length": [ "281" @@ -8337,20 +8719,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8360,29 +8745,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11880" ], "x-ms-request-id": [ - "85c915f5-00ac-4f38-8323-75a46b22aaa5" + "c01bb066-ed12-4a48-9d4f-cf6f73fee6c5" ], "x-ms-correlation-request-id": [ - "85c915f5-00ac-4f38-8323-75a46b22aaa5" + "c01bb066-ed12-4a48-9d4f-cf6f73fee6c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232530Z:85c915f5-00ac-4f38-8323-75a46b22aaa5" + "WESTUS:20210217T045855Z:c01bb066-ed12-4a48-9d4f-cf6f73fee6c5" ], "Date": [ - "Mon, 31 Aug 2020 23:25:30 GMT" + "Wed, 17 Feb 2021 04:58:55 GMT" ], "Content-Length": [ "281" @@ -8394,20 +8780,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8417,29 +8806,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11879" ], "x-ms-request-id": [ - "63ea3af5-61f5-40b7-848c-daac54950b47" + "420226f5-7155-453a-aff8-b145d508de32" ], "x-ms-correlation-request-id": [ - "63ea3af5-61f5-40b7-848c-daac54950b47" + "420226f5-7155-453a-aff8-b145d508de32" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232550Z:63ea3af5-61f5-40b7-848c-daac54950b47" + "WESTUS:20210217T045915Z:420226f5-7155-453a-aff8-b145d508de32" ], "Date": [ - "Mon, 31 Aug 2020 23:25:50 GMT" + "Wed, 17 Feb 2021 04:59:15 GMT" ], "Content-Length": [ "281" @@ -8451,20 +8841,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8474,29 +8867,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" ], "x-ms-request-id": [ - "783567f2-39db-44c8-bb40-40f3e6f8043d" + "ce2c07ec-bd6f-4eb4-ae77-0f15f2d33d7e" ], "x-ms-correlation-request-id": [ - "783567f2-39db-44c8-bb40-40f3e6f8043d" + "ce2c07ec-bd6f-4eb4-ae77-0f15f2d33d7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232621Z:783567f2-39db-44c8-bb40-40f3e6f8043d" + "WESTUS:20210217T045935Z:ce2c07ec-bd6f-4eb4-ae77-0f15f2d33d7e" ], "Date": [ - "Mon, 31 Aug 2020 23:26:20 GMT" + "Wed, 17 Feb 2021 04:59:35 GMT" ], "Content-Length": [ "281" @@ -8508,20 +8902,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8531,29 +8928,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11877" ], "x-ms-request-id": [ - "991d5cc9-98c8-4b93-90c4-1affd1efaf69" + "0948d364-9ec9-4716-891e-dc6d0943279f" ], "x-ms-correlation-request-id": [ - "991d5cc9-98c8-4b93-90c4-1affd1efaf69" + "0948d364-9ec9-4716-891e-dc6d0943279f" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232641Z:991d5cc9-98c8-4b93-90c4-1affd1efaf69" + "WESTUS:20210217T045955Z:0948d364-9ec9-4716-891e-dc6d0943279f" ], "Date": [ - "Mon, 31 Aug 2020 23:26:41 GMT" + "Wed, 17 Feb 2021 04:59:55 GMT" ], "Content-Length": [ "281" @@ -8565,20 +8963,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8588,29 +8989,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "11876" ], "x-ms-request-id": [ - "40d32c63-a33a-40d9-ac34-a545ca8b70fc" + "5b55181c-48e2-4a4c-8e2b-6397b77d69c0" ], "x-ms-correlation-request-id": [ - "40d32c63-a33a-40d9-ac34-a545ca8b70fc" + "5b55181c-48e2-4a4c-8e2b-6397b77d69c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232702Z:40d32c63-a33a-40d9-ac34-a545ca8b70fc" + "WESTUS:20210217T050015Z:5b55181c-48e2-4a4c-8e2b-6397b77d69c0" ], "Date": [ - "Mon, 31 Aug 2020 23:27:01 GMT" + "Wed, 17 Feb 2021 05:00:15 GMT" ], "Content-Length": [ "281" @@ -8622,20 +9024,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8645,29 +9050,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11875" ], "x-ms-request-id": [ - "f2d4d273-e6d2-45dc-a121-23b4043962e3" + "968987c2-ef02-4423-ada8-a41ee6918a9c" ], "x-ms-correlation-request-id": [ - "f2d4d273-e6d2-45dc-a121-23b4043962e3" + "968987c2-ef02-4423-ada8-a41ee6918a9c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232722Z:f2d4d273-e6d2-45dc-a121-23b4043962e3" + "WESTUS:20210217T050035Z:968987c2-ef02-4423-ada8-a41ee6918a9c" ], "Date": [ - "Mon, 31 Aug 2020 23:27:21 GMT" + "Wed, 17 Feb 2021 05:00:35 GMT" ], "Content-Length": [ "281" @@ -8679,20 +9085,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8702,29 +9111,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11874" ], "x-ms-request-id": [ - "fdf2dd78-d107-41f8-8bc7-e0ae85fbdf8d" + "6fb9a17d-77e2-4bc9-a27a-014e20fb57f0" ], "x-ms-correlation-request-id": [ - "fdf2dd78-d107-41f8-8bc7-e0ae85fbdf8d" + "6fb9a17d-77e2-4bc9-a27a-014e20fb57f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232742Z:fdf2dd78-d107-41f8-8bc7-e0ae85fbdf8d" + "WESTUS:20210217T050056Z:6fb9a17d-77e2-4bc9-a27a-014e20fb57f0" ], "Date": [ - "Mon, 31 Aug 2020 23:27:41 GMT" + "Wed, 17 Feb 2021 05:00:55 GMT" ], "Content-Length": [ "281" @@ -8736,20 +9146,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8759,29 +9172,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11873" ], "x-ms-request-id": [ - "8929a881-909b-49aa-b881-3a2e5be35f38" + "33d44017-aa19-4408-aab3-1aa81596812e" ], "x-ms-correlation-request-id": [ - "8929a881-909b-49aa-b881-3a2e5be35f38" + "33d44017-aa19-4408-aab3-1aa81596812e" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232802Z:8929a881-909b-49aa-b881-3a2e5be35f38" + "WESTUS:20210217T050116Z:33d44017-aa19-4408-aab3-1aa81596812e" ], "Date": [ - "Mon, 31 Aug 2020 23:28:01 GMT" + "Wed, 17 Feb 2021 05:01:16 GMT" ], "Content-Length": [ "281" @@ -8793,20 +9207,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8816,29 +9233,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11872" ], "x-ms-request-id": [ - "18cc0cf0-71a4-48fe-8841-46d1d352c7af" + "a5dd0e6b-c623-4437-8b32-bd06ada04cc7" ], "x-ms-correlation-request-id": [ - "18cc0cf0-71a4-48fe-8841-46d1d352c7af" + "a5dd0e6b-c623-4437-8b32-bd06ada04cc7" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232822Z:18cc0cf0-71a4-48fe-8841-46d1d352c7af" + "WESTUS:20210217T050136Z:a5dd0e6b-c623-4437-8b32-bd06ada04cc7" ], "Date": [ - "Mon, 31 Aug 2020 23:28:21 GMT" + "Wed, 17 Feb 2021 05:01:36 GMT" ], "Content-Length": [ "281" @@ -8850,20 +9268,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8873,29 +9294,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11871" ], "x-ms-request-id": [ - "ab157998-ff6e-4542-a10a-86538b7e62ab" + "597163bf-c5a1-45ad-b5b0-26ea21c9c690" ], "x-ms-correlation-request-id": [ - "ab157998-ff6e-4542-a10a-86538b7e62ab" + "597163bf-c5a1-45ad-b5b0-26ea21c9c690" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232842Z:ab157998-ff6e-4542-a10a-86538b7e62ab" + "WESTUS:20210217T050156Z:597163bf-c5a1-45ad-b5b0-26ea21c9c690" ], "Date": [ - "Mon, 31 Aug 2020 23:28:41 GMT" + "Wed, 17 Feb 2021 05:01:56 GMT" ], "Content-Length": [ "281" @@ -8907,20 +9329,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8930,29 +9355,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11870" ], "x-ms-request-id": [ - "ea912344-0f14-420a-b56f-83c3ca4caa12" + "12ca80f7-5c21-436f-9454-549b20fa0725" ], "x-ms-correlation-request-id": [ - "ea912344-0f14-420a-b56f-83c3ca4caa12" + "12ca80f7-5c21-436f-9454-549b20fa0725" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232902Z:ea912344-0f14-420a-b56f-83c3ca4caa12" + "WESTUS:20210217T050216Z:12ca80f7-5c21-436f-9454-549b20fa0725" ], "Date": [ - "Mon, 31 Aug 2020 23:29:01 GMT" + "Wed, 17 Feb 2021 05:02:16 GMT" ], "Content-Length": [ "281" @@ -8964,20 +9390,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -8987,29 +9416,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11868" ], "x-ms-request-id": [ - "633ea979-c7a6-4100-8e20-f2e1cc0a0b2a" + "9d0a0515-13f6-41ac-93a0-067456217efb" ], "x-ms-correlation-request-id": [ - "633ea979-c7a6-4100-8e20-f2e1cc0a0b2a" + "9d0a0515-13f6-41ac-93a0-067456217efb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232922Z:633ea979-c7a6-4100-8e20-f2e1cc0a0b2a" + "WESTUS:20210217T050236Z:9d0a0515-13f6-41ac-93a0-067456217efb" ], "Date": [ - "Mon, 31 Aug 2020 23:29:22 GMT" + "Wed, 17 Feb 2021 05:02:36 GMT" ], "Content-Length": [ "281" @@ -9021,20 +9451,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9044,29 +9477,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11867" ], "x-ms-request-id": [ - "c0f4c178-9f18-4ea3-b054-6eac3c13f72a" + "ede5c167-a4c1-4e3a-9e62-126c44b5d6f0" ], "x-ms-correlation-request-id": [ - "c0f4c178-9f18-4ea3-b054-6eac3c13f72a" + "ede5c167-a4c1-4e3a-9e62-126c44b5d6f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T232942Z:c0f4c178-9f18-4ea3-b054-6eac3c13f72a" + "WESTUS:20210217T050257Z:ede5c167-a4c1-4e3a-9e62-126c44b5d6f0" ], "Date": [ - "Mon, 31 Aug 2020 23:29:42 GMT" + "Wed, 17 Feb 2021 05:02:56 GMT" ], "Content-Length": [ "281" @@ -9078,20 +9512,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9101,29 +9538,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11866" ], "x-ms-request-id": [ - "b34e7e30-0bf4-4a53-a441-94ca3a5b5f1b" + "16840479-b498-4435-aac2-a7b1fcf14c67" ], "x-ms-correlation-request-id": [ - "b34e7e30-0bf4-4a53-a441-94ca3a5b5f1b" + "16840479-b498-4435-aac2-a7b1fcf14c67" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233002Z:b34e7e30-0bf4-4a53-a441-94ca3a5b5f1b" + "WESTUS:20210217T050317Z:16840479-b498-4435-aac2-a7b1fcf14c67" ], "Date": [ - "Mon, 31 Aug 2020 23:30:02 GMT" + "Wed, 17 Feb 2021 05:03:17 GMT" ], "Content-Length": [ "281" @@ -9135,20 +9573,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9158,29 +9599,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11865" ], "x-ms-request-id": [ - "fbb4d548-8429-48f7-b905-cedee77bc311" + "b6d5992c-db46-459e-9b3a-de2ac7945880" ], "x-ms-correlation-request-id": [ - "fbb4d548-8429-48f7-b905-cedee77bc311" + "b6d5992c-db46-459e-9b3a-de2ac7945880" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233022Z:fbb4d548-8429-48f7-b905-cedee77bc311" + "WESTUS:20210217T050337Z:b6d5992c-db46-459e-9b3a-de2ac7945880" ], "Date": [ - "Mon, 31 Aug 2020 23:30:22 GMT" + "Wed, 17 Feb 2021 05:03:37 GMT" ], "Content-Length": [ "281" @@ -9192,20 +9634,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9215,29 +9660,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "11864" ], "x-ms-request-id": [ - "844551c4-1891-48ed-9644-8413c119f251" + "7db874b4-401c-4101-b30c-9df9b2f331cb" ], "x-ms-correlation-request-id": [ - "844551c4-1891-48ed-9644-8413c119f251" + "7db874b4-401c-4101-b30c-9df9b2f331cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233043Z:844551c4-1891-48ed-9644-8413c119f251" + "WESTUS:20210217T050357Z:7db874b4-401c-4101-b30c-9df9b2f331cb" ], "Date": [ - "Mon, 31 Aug 2020 23:30:42 GMT" + "Wed, 17 Feb 2021 05:03:57 GMT" ], "Content-Length": [ "281" @@ -9249,20 +9695,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9272,29 +9721,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11863" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b33b0e38-1728-437b-aa2c-0ba6e0b7fa39" + "24daaafe-614b-4d54-9a32-54876ab58daa" ], "x-ms-correlation-request-id": [ - "b33b0e38-1728-437b-aa2c-0ba6e0b7fa39" + "24daaafe-614b-4d54-9a32-54876ab58daa" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233103Z:b33b0e38-1728-437b-aa2c-0ba6e0b7fa39" + "WESTUS:20210217T050417Z:24daaafe-614b-4d54-9a32-54876ab58daa" ], "Date": [ - "Mon, 31 Aug 2020 23:31:02 GMT" + "Wed, 17 Feb 2021 05:04:17 GMT" ], "Content-Length": [ "281" @@ -9306,20 +9756,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9329,32 +9782,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11862" ], "x-ms-request-id": [ - "d6d66f91-abf2-4c19-b79e-ab275c2d1af0" + "b8898dd5-e04e-4a80-aa95-e725173a9801" ], "x-ms-correlation-request-id": [ - "d6d66f91-abf2-4c19-b79e-ab275c2d1af0" + "b8898dd5-e04e-4a80-aa95-e725173a9801" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233123Z:d6d66f91-abf2-4c19-b79e-ab275c2d1af0" + "WESTUS:20210217T050438Z:b8898dd5-e04e-4a80-aa95-e725173a9801" ], "Date": [ - "Mon, 31 Aug 2020 23:31:22 GMT" + "Wed, 17 Feb 2021 05:04:37 GMT" ], "Content-Length": [ - "294" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9363,20 +9817,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"80dd0001-e92f-4991-88bc-26417d1cf972\",\r\n \"startTime\": \"2020-08-31T23:17:08.2419958Z\",\r\n \"endTime\": \"2020-08-31T23:31:10.0689423Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/80dd0001-e92f-4991-88bc-26417d1cf972?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzgwZGQwMDAxLWU5MmYtNDk5MS04OGJjLTI2NDE3ZDFjZjk3Mj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9386,54 +9843,58 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11861" ], "x-ms-request-id": [ - "3484dfd7-3193-4ba6-875b-c132e6574e58" + "fc949cee-0115-493e-aa33-f495f87da6d3" ], "x-ms-correlation-request-id": [ - "3484dfd7-3193-4ba6-875b-c132e6574e58" + "fc949cee-0115-493e-aa33-f495f87da6d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233123Z:3484dfd7-3193-4ba6-875b-c132e6574e58" + "WESTUS:20210217T050458Z:fc949cee-0115-493e-aa33-f495f87da6d3" ], "Date": [ - "Mon, 31 Aug 2020 23:31:22 GMT" + "Wed, 17 Feb 2021 05:04:58 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384?api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczEzMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4Mzg0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ec52446-f226-4a00-8d5d-d8a1acebe494" - ], - "Accept-Language": [ - "en-US" + "029c0248-059e-430d-aee1-2acd41124fdc" ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9443,38 +9904,33 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" ], "x-ms-request-id": [ - "8982b12c-48e1-4856-8c97-69ae03c9a06d" + "5b3290fe-6547-45e1-8de8-544f0ceb1b8c" ], "x-ms-correlation-request-id": [ - "8982b12c-48e1-4856-8c97-69ae03c9a06d" + "5b3290fe-6547-45e1-8de8-544f0ceb1b8c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233123Z:8982b12c-48e1-4856-8c97-69ae03c9a06d" + "WESTUS:20210217T050519Z:5b3290fe-6547-45e1-8de8-544f0ceb1b8c" ], "Date": [ - "Mon, 31 Aug 2020 23:31:23 GMT" + "Wed, 17 Feb 2021 05:05:18 GMT" ], "Content-Length": [ - "919" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9483,20 +9939,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1311/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8384\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8384\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"clusterId\": \"e46dc795-0a4d-4aa5-a843-bdd16aa7387d\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8384\",\r\n \"fqdn\": \"sfmcps-ps8384.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\": \"E9702F24C59E56853BDDBE9F88F04699A8A0AD50\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9506,32 +9965,582 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-request-id": [ + "bfb04d30-e84f-464e-b2c0-84800e458bc9" + ], + "x-ms-correlation-request-id": [ + "bfb04d30-e84f-464e-b2c0-84800e458bc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050539Z:bfb04d30-e84f-464e-b2c0-84800e458bc9" + ], + "Date": [ + "Wed, 17 Feb 2021 05:05:38 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-request-id": [ + "c9f2a8c5-9560-4033-b628-229d23148dc0" + ], + "x-ms-correlation-request-id": [ + "c9f2a8c5-9560-4033-b628-229d23148dc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050559Z:c9f2a8c5-9560-4033-b628-229d23148dc0" + ], + "Date": [ + "Wed, 17 Feb 2021 05:05:58 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-request-id": [ + "4ef54c47-dfd3-40ff-bf10-fed1a5b122f9" + ], + "x-ms-correlation-request-id": [ + "4ef54c47-dfd3-40ff-bf10-fed1a5b122f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050619Z:4ef54c47-dfd3-40ff-bf10-fed1a5b122f9" + ], + "Date": [ + "Wed, 17 Feb 2021 05:06:19 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-request-id": [ + "ed8f328a-1db3-4398-bfbf-823869d23a1f" + ], + "x-ms-correlation-request-id": [ + "ed8f328a-1db3-4398-bfbf-823869d23a1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050639Z:ed8f328a-1db3-4398-bfbf-823869d23a1f" + ], + "Date": [ + "Wed, 17 Feb 2021 05:06:38 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-request-id": [ + "907594bc-3807-4d63-b097-c14ab781f8fb" + ], + "x-ms-correlation-request-id": [ + "907594bc-3807-4d63-b097-c14ab781f8fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050659Z:907594bc-3807-4d63-b097-c14ab781f8fb" + ], + "Date": [ + "Wed, 17 Feb 2021 05:06:59 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-request-id": [ + "543e2895-c4d3-47ec-bb0a-b6d82238de82" + ], + "x-ms-correlation-request-id": [ + "543e2895-c4d3-47ec-bb0a-b6d82238de82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050720Z:543e2895-c4d3-47ec-bb0a-b6d82238de82" + ], + "Date": [ + "Wed, 17 Feb 2021 05:07:19 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-request-id": [ + "a6b0a48e-7d42-475f-ae6f-6ae90798cfea" + ], + "x-ms-correlation-request-id": [ + "a6b0a48e-7d42-475f-ae6f-6ae90798cfea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050740Z:a6b0a48e-7d42-475f-ae6f-6ae90798cfea" + ], + "Date": [ + "Wed, 17 Feb 2021 05:07:39 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-request-id": [ + "5c106898-078c-4849-84d7-90cb2e9a1bf6" + ], + "x-ms-correlation-request-id": [ + "5c106898-078c-4849-84d7-90cb2e9a1bf6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050800Z:5c106898-078c-4849-84d7-90cb2e9a1bf6" + ], + "Date": [ + "Wed, 17 Feb 2021 05:07:59 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-request-id": [ + "b5cc2742-1238-4900-ba57-b54082b550e8" + ], + "x-ms-correlation-request-id": [ + "b5cc2742-1238-4900-ba57-b54082b550e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T050820Z:b5cc2742-1238-4900-ba57-b54082b550e8" + ], + "Date": [ + "Wed, 17 Feb 2021 05:08:19 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11850" ], "x-ms-request-id": [ - "6dfce6ce-086a-4255-a577-795b2503842c" + "1d0044d9-7389-49c8-94a6-f73faef494da" ], "x-ms-correlation-request-id": [ - "6dfce6ce-086a-4255-a577-795b2503842c" + "1d0044d9-7389-49c8-94a6-f73faef494da" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233143Z:6dfce6ce-086a-4255-a577-795b2503842c" + "WESTUS:20210217T050840Z:1d0044d9-7389-49c8-94a6-f73faef494da" ], "Date": [ - "Mon, 31 Aug 2020 23:31:42 GMT" + "Wed, 17 Feb 2021 05:08:40 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9540,20 +10549,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9563,32 +10575,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11849" ], "x-ms-request-id": [ - "a0a9276b-bed2-4303-a917-6aadddf95adf" + "19d3acb1-2165-4dea-832c-c7250e4a59fe" ], "x-ms-correlation-request-id": [ - "a0a9276b-bed2-4303-a917-6aadddf95adf" + "19d3acb1-2165-4dea-832c-c7250e4a59fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233203Z:a0a9276b-bed2-4303-a917-6aadddf95adf" + "WESTUS:20210217T050900Z:19d3acb1-2165-4dea-832c-c7250e4a59fe" ], "Date": [ - "Mon, 31 Aug 2020 23:32:03 GMT" + "Wed, 17 Feb 2021 05:08:59 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9597,20 +10610,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9620,32 +10636,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11848" ], "x-ms-request-id": [ - "e7e94170-d633-480d-aee3-78bfd5ada28a" + "09835fd0-6be8-40fe-afad-5cfed08760af" ], "x-ms-correlation-request-id": [ - "e7e94170-d633-480d-aee3-78bfd5ada28a" + "09835fd0-6be8-40fe-afad-5cfed08760af" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233223Z:e7e94170-d633-480d-aee3-78bfd5ada28a" + "WESTUS:20210217T050921Z:09835fd0-6be8-40fe-afad-5cfed08760af" ], "Date": [ - "Mon, 31 Aug 2020 23:32:23 GMT" + "Wed, 17 Feb 2021 05:09:20 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9654,20 +10671,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9677,32 +10697,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "11847" ], "x-ms-request-id": [ - "6ce35609-79f6-469a-abf5-a131493019c2" + "813eccc0-c247-4210-8271-c43f522fe526" ], "x-ms-correlation-request-id": [ - "6ce35609-79f6-469a-abf5-a131493019c2" + "813eccc0-c247-4210-8271-c43f522fe526" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233244Z:6ce35609-79f6-469a-abf5-a131493019c2" + "WESTUS:20210217T050941Z:813eccc0-c247-4210-8271-c43f522fe526" ], "Date": [ - "Mon, 31 Aug 2020 23:32:43 GMT" + "Wed, 17 Feb 2021 05:09:40 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9711,20 +10732,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9734,32 +10758,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11846" ], "x-ms-request-id": [ - "ae6da0f9-4610-44bf-a2f4-53fe3279519b" + "a57919cb-7830-4933-b592-937c73986d3b" ], "x-ms-correlation-request-id": [ - "ae6da0f9-4610-44bf-a2f4-53fe3279519b" + "a57919cb-7830-4933-b592-937c73986d3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233304Z:ae6da0f9-4610-44bf-a2f4-53fe3279519b" + "WESTUS:20210217T051001Z:a57919cb-7830-4933-b592-937c73986d3b" ], "Date": [ - "Mon, 31 Aug 2020 23:33:03 GMT" + "Wed, 17 Feb 2021 05:10:00 GMT" ], "Content-Length": [ - "282" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9768,20 +10793,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"43f20005-d7a4-4e40-afb6-87f848b4fab8\",\r\n \"startTime\": \"2021-02-17T04:54:11.8134916Z\",\r\n \"endTime\": \"2021-02-17T05:09:43.8469153Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/43f20005-d7a4-4e40-afb6-87f848b4fab8?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzQzZjIwMDA1LWQ3YTQtNGU0MC1hZmI2LTg3Zjg0OGI0ZmFiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "029c0248-059e-430d-aee1-2acd41124fdc" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9791,32 +10819,96 @@ "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "x-ms-request-id": [ + "1929e72b-aa0c-4cce-8040-4bd43954c512" + ], + "x-ms-correlation-request-id": [ + "1929e72b-aa0c-4cce-8040-4bd43954c512" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T051001Z:1929e72b-aa0c-4cce-8040-4bd43954c512" + ], + "Date": [ + "Wed, 17 Feb 2021 05:10:01 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczg1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMzNzkzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-request-id": [ - "af3b8d4a-5f86-4510-89d4-5cbdbebb6567" + "076c7ace-a0fc-4a48-8063-b9b5e0489913" ], "x-ms-correlation-request-id": [ - "af3b8d4a-5f86-4510-89d4-5cbdbebb6567" + "076c7ace-a0fc-4a48-8063-b9b5e0489913" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233324Z:af3b8d4a-5f86-4510-89d4-5cbdbebb6567" + "WESTUS:20210217T051002Z:076c7ace-a0fc-4a48-8063-b9b5e0489913" ], "Date": [ - "Mon, 31 Aug 2020 23:33:23 GMT" + "Wed, 17 Feb 2021 05:10:02 GMT" ], "Content-Length": [ - "282" + "1033" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9825,20 +10917,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps8559/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps3793\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sfmcps-ps3793\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterId\": \"9472f8dd-f2b4-493e-8349-0408d5afca7e\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps3793\",\r\n \"fqdn\": \"sfmcps-ps3793.northeurope.cloudapp.azure.com\",\r\n \"ipv4Address\": \"51.104.142.250\",\r\n \"clusterCertificateThumbprints\": [\r\n \"CFD2AEF2ED64511F574C186AF8BDC5F4C6F70584\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9848,32 +10943,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11844" ], "x-ms-request-id": [ - "f0402dc1-8532-47c5-bb27-1bac754537c8" + "d67d7d94-0c7c-4cec-a0be-4949c254993d" ], "x-ms-correlation-request-id": [ - "f0402dc1-8532-47c5-bb27-1bac754537c8" + "d67d7d94-0c7c-4cec-a0be-4949c254993d" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233344Z:f0402dc1-8532-47c5-bb27-1bac754537c8" + "WESTUS:20210217T051023Z:d67d7d94-0c7c-4cec-a0be-4949c254993d" ], "Date": [ - "Mon, 31 Aug 2020 23:33:43 GMT" + "Wed, 17 Feb 2021 05:10:22 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9882,20 +10978,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9905,32 +11004,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11843" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "57310463-bcd8-4e83-80aa-9d375e918422" + "081e93f2-ced6-444c-8d73-1692e33b2066" ], "x-ms-correlation-request-id": [ - "57310463-bcd8-4e83-80aa-9d375e918422" + "081e93f2-ced6-444c-8d73-1692e33b2066" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233404Z:57310463-bcd8-4e83-80aa-9d375e918422" + "WESTUS:20210217T051043Z:081e93f2-ced6-444c-8d73-1692e33b2066" ], "Date": [ - "Mon, 31 Aug 2020 23:34:03 GMT" + "Wed, 17 Feb 2021 05:10:42 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9939,20 +11039,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -9962,32 +11065,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11842" ], "x-ms-request-id": [ - "0c14e0b1-abbd-4dd2-8319-344bf72f2a67" + "5b823656-c0bb-468b-a117-2558e90c0238" ], "x-ms-correlation-request-id": [ - "0c14e0b1-abbd-4dd2-8319-344bf72f2a67" + "5b823656-c0bb-468b-a117-2558e90c0238" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233424Z:0c14e0b1-abbd-4dd2-8319-344bf72f2a67" + "WESTUS:20210217T051104Z:5b823656-c0bb-468b-a117-2558e90c0238" ], "Date": [ - "Mon, 31 Aug 2020 23:34:23 GMT" + "Wed, 17 Feb 2021 05:11:03 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9996,20 +11100,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10019,32 +11126,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "11841" ], "x-ms-request-id": [ - "223cd7d9-c8c7-4908-81ee-65f417506ff4" + "fa5004fb-fed6-43e1-a206-961567ab4216" ], "x-ms-correlation-request-id": [ - "223cd7d9-c8c7-4908-81ee-65f417506ff4" + "fa5004fb-fed6-43e1-a206-961567ab4216" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233444Z:223cd7d9-c8c7-4908-81ee-65f417506ff4" + "WESTUS:20210217T051124Z:fa5004fb-fed6-43e1-a206-961567ab4216" ], "Date": [ - "Mon, 31 Aug 2020 23:34:43 GMT" + "Wed, 17 Feb 2021 05:11:23 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10053,20 +11161,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10076,32 +11187,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11840" ], "x-ms-request-id": [ - "aa60be22-3e67-4170-ae77-9a1dda05d73e" + "5eee5c25-04a5-4380-a6bd-28e70e20cc52" ], "x-ms-correlation-request-id": [ - "aa60be22-3e67-4170-ae77-9a1dda05d73e" + "5eee5c25-04a5-4380-a6bd-28e70e20cc52" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233504Z:aa60be22-3e67-4170-ae77-9a1dda05d73e" + "WESTUS:20210217T051144Z:5eee5c25-04a5-4380-a6bd-28e70e20cc52" ], "Date": [ - "Mon, 31 Aug 2020 23:35:04 GMT" + "Wed, 17 Feb 2021 05:11:43 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10110,20 +11222,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10133,32 +11248,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11839" ], "x-ms-request-id": [ - "33fa3f29-1f69-414b-87c8-959593be4fe8" + "918e2b99-6eed-40bb-af77-e4c165b57ab2" ], "x-ms-correlation-request-id": [ - "33fa3f29-1f69-414b-87c8-959593be4fe8" + "918e2b99-6eed-40bb-af77-e4c165b57ab2" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233524Z:33fa3f29-1f69-414b-87c8-959593be4fe8" + "WESTUS:20210217T051204Z:918e2b99-6eed-40bb-af77-e4c165b57ab2" ], "Date": [ - "Mon, 31 Aug 2020 23:35:24 GMT" + "Wed, 17 Feb 2021 05:12:03 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10167,20 +11283,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10190,32 +11309,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11838" ], "x-ms-request-id": [ - "8f040ae4-5a89-4fe5-9e25-cd747c68a398" + "f56efc32-b7d8-4410-aa1d-f5fb9bcc635c" ], "x-ms-correlation-request-id": [ - "8f040ae4-5a89-4fe5-9e25-cd747c68a398" + "f56efc32-b7d8-4410-aa1d-f5fb9bcc635c" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233545Z:8f040ae4-5a89-4fe5-9e25-cd747c68a398" + "WESTUS:20210217T051224Z:f56efc32-b7d8-4410-aa1d-f5fb9bcc635c" ], "Date": [ - "Mon, 31 Aug 2020 23:35:44 GMT" + "Wed, 17 Feb 2021 05:12:23 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10224,20 +11344,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10247,32 +11370,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "11837" ], "x-ms-request-id": [ - "0ea06cfd-e1e5-43b3-a188-a457f02e3c66" + "2f7ebed7-7734-47d3-9706-5eaa37d995b4" ], "x-ms-correlation-request-id": [ - "0ea06cfd-e1e5-43b3-a188-a457f02e3c66" + "2f7ebed7-7734-47d3-9706-5eaa37d995b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233605Z:0ea06cfd-e1e5-43b3-a188-a457f02e3c66" + "WESTUS:20210217T051244Z:2f7ebed7-7734-47d3-9706-5eaa37d995b4" ], "Date": [ - "Mon, 31 Aug 2020 23:36:04 GMT" + "Wed, 17 Feb 2021 05:12:44 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10281,20 +11405,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10304,32 +11431,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11836" ], "x-ms-request-id": [ - "3ecc608d-db5a-40eb-8fdb-346a84c236e6" + "6a7a7676-ed6e-46b4-bb2a-e7221b7ba317" ], "x-ms-correlation-request-id": [ - "3ecc608d-db5a-40eb-8fdb-346a84c236e6" + "6a7a7676-ed6e-46b4-bb2a-e7221b7ba317" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233625Z:3ecc608d-db5a-40eb-8fdb-346a84c236e6" + "WESTUS:20210217T051305Z:6a7a7676-ed6e-46b4-bb2a-e7221b7ba317" ], "Date": [ - "Mon, 31 Aug 2020 23:36:24 GMT" + "Wed, 17 Feb 2021 05:13:04 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10338,20 +11466,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10361,32 +11492,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "11835" ], "x-ms-request-id": [ - "2830e4fc-b8d4-494e-95e7-241014d6fa11" + "ccc2d998-712f-4814-8740-cb68e05dd3ef" ], "x-ms-correlation-request-id": [ - "2830e4fc-b8d4-494e-95e7-241014d6fa11" + "ccc2d998-712f-4814-8740-cb68e05dd3ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233645Z:2830e4fc-b8d4-494e-95e7-241014d6fa11" + "WESTUS:20210217T051325Z:ccc2d998-712f-4814-8740-cb68e05dd3ef" ], "Date": [ - "Mon, 31 Aug 2020 23:36:44 GMT" + "Wed, 17 Feb 2021 05:13:24 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10395,20 +11527,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10418,32 +11553,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11834" ], "x-ms-request-id": [ - "f757cfcb-4921-49f6-a751-4bf90283b1a5" + "ebb9cad0-7da3-4163-b0ca-a688a5744641" ], "x-ms-correlation-request-id": [ - "f757cfcb-4921-49f6-a751-4bf90283b1a5" + "ebb9cad0-7da3-4163-b0ca-a688a5744641" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233705Z:f757cfcb-4921-49f6-a751-4bf90283b1a5" + "WESTUS:20210217T051345Z:ebb9cad0-7da3-4163-b0ca-a688a5744641" ], "Date": [ - "Mon, 31 Aug 2020 23:37:05 GMT" + "Wed, 17 Feb 2021 05:13:44 GMT" ], "Content-Length": [ - "282" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10452,20 +11588,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 60.0,\r\n \"status\": \"Created\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperations/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10475,32 +11614,33 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11833" ], "x-ms-request-id": [ - "c25073dd-8bc4-4f24-96de-86edc123e1ac" + "26400054-5c0b-491b-9ec7-1151776e0eff" ], "x-ms-correlation-request-id": [ - "c25073dd-8bc4-4f24-96de-86edc123e1ac" + "26400054-5c0b-491b-9ec7-1151776e0eff" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233725Z:c25073dd-8bc4-4f24-96de-86edc123e1ac" + "WESTUS:20210217T051405Z:26400054-5c0b-491b-9ec7-1151776e0eff" ], "Date": [ - "Mon, 31 Aug 2020 23:37:25 GMT" + "Wed, 17 Feb 2021 05:14:04 GMT" ], "Content-Length": [ - "294" + "293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10509,20 +11649,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"79fc0001-1ac3-4578-8bc1-7b9bedac2764\",\r\n \"startTime\": \"2020-08-31T23:31:23.6685876Z\",\r\n \"endTime\": \"2020-08-31T23:37:24.4519379Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"cac50005-0987-451e-8662-1c39e70daa86\",\r\n \"startTime\": \"2021-02-17T05:10:02.694703Z\",\r\n \"endTime\": \"2021-02-17T05:14:04.3309817Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/79fc0001-1ac3-4578-8bc1-7b9bedac2764?api-version=2020-01-01-preview&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzc5ZmMwMDAxLTFhYzMtNDU3OC04YmMxLTdiOWJlZGFjMjc2ND9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/northeurope/managedclusteroperationresults/cac50005-0987-451e-8662-1c39e70daa86?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvbm9ydGhldXJvcGUvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2NhYzUwMDA1LTA5ODctNDUxZS04NjYyLTFjMzllNzBkYWE4Nj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "087df2c0-1671-4d6e-9f80-0e7584a33224" + ], "User-Agent": [ - "FxVersion/4.6.28801.04", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.3.0.0" + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/0.1.0" ] }, "ResponseHeaders": { @@ -10532,29 +11675,30 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11832" ], "x-ms-request-id": [ - "f013ae97-51ff-4ae7-b996-024ca4520ab8" + "f2d402b2-66d5-4888-b127-634daf3e40d1" ], "x-ms-correlation-request-id": [ - "f013ae97-51ff-4ae7-b996-024ca4520ab8" + "f2d402b2-66d5-4888-b127-634daf3e40d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200831T233725Z:f013ae97-51ff-4ae7-b996-024ca4520ab8" + "WESTUS:20210217T051405Z:f2d402b2-66d5-4888-b127-634daf3e40d1" ], "Date": [ - "Mon, 31 Aug 2020 23:37:25 GMT" + "Wed, 17 Feb 2021 05:14:05 GMT" ], "Expires": [ "-1" @@ -10566,8 +11710,8 @@ ], "Names": { "Test-NodeTypeOperations": [ - "ps1311", - "ps8384" + "ps8559", + "ps3793" ] }, "Variables": { From 12b2f1d8a5c152b2dbb86263688aece790510f69 Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Gomez Date: Wed, 24 Feb 2021 15:09:54 -0800 Subject: [PATCH 06/13] update managed clusters pacakge to published version 1.0.0-beta.1 --- src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj | 2 +- src/ServiceFabric/ServiceFabric/ServiceFabric.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj b/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj index b6d626546d74..de71b1cc550b 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj +++ b/src/ServiceFabric/ServiceFabric.Test/ServiceFabric.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj b/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj index 62409dbac842..4cef86630180 100644 --- a/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj +++ b/src/ServiceFabric/ServiceFabric/ServiceFabric.csproj @@ -14,7 +14,7 @@ - + From 89e8c319e4a72c78b3dfcbede3c8e9ad88104ed4 Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Fri, 5 Mar 2021 15:47:47 -0800 Subject: [PATCH 07/13] managed app type cmdlets --- ...viceFabricManagedClusterApplicationType.cs | 106 +++++++++++ ...viceFabricManagedClusterApplicationType.cs | 78 ++++++++ ...viceFabricManagedClusterApplicationType.cs | 127 +++++++++++++ ...viceFabricManagedClusterApplicationType.cs | 167 ++++++++++++++++++ .../ManagedApplicationCmdletBase.cs | 160 +++++++++++++++++ .../Commands/ServiceFabricCommonCmdletBase.cs | 29 ++- .../PSManagedApplicationType.cs | 32 ++++ 7 files changed, 698 insertions(+), 1 deletion(-) create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedApplicationCmdletBase.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs new file mode 100644 index 000000000000..2190413018cc --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationType", DefaultParameterSetName = ByResourceGroupAndCluster), OutputType(typeof(PSManagedApplicationType))] + public class GetAzServiceFabricManagedClusterApplicationType : ManagedApplicationCmdletBase + { + private const string ByResourceGroupAndCluster = "ByResourceGroupAndCluster"; + private const string ByName = "ByName"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ValueFromPipeline = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the managed application type")] + [Alias("ApplicationTypeName")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application type.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + switch (ParameterSetName) + { + case ByResourceGroupAndCluster: + var managedAppTypeList = this.ReturnListByPageResponse( + this.SfrpMcClient.ApplicationTypes.List(this.ResourceGroupName, this.ClusterName), + this.SfrpMcClient.ApplicationTypes.ListNext); + WriteObject(managedAppTypeList.Select(appType => new PSManagedApplicationType(appType)), true); + break; + case ByName: + GetByName(); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + GetByName(); + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + } + + private void GetByName() + { + var managedAppType = this.SfrpMcClient.ApplicationTypes.Get(this.ResourceGroupName, this.ClusterName, this.Name); + WriteObject(new PSManagedApplicationType(managedAppType), false); + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationTypeProvider, out string resourceGroup, out string resourceName, out string parentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + } + } +} \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs new file mode 100644 index 000000000000..b48cc82dc58f --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs @@ -0,0 +1,78 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using System; +using System.Collections; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationType", SupportsShouldProcess = true), OutputType(typeof(PSManagedApplicationType))] + public class NewAzServiceFabricManagedClusterApplicationType : ManagedApplicationCmdletBase + { + #region Parameters + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ValueFromPipeline = true, + HelpMessage = "Specify the name of the application type")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + if (ShouldProcess(target: this.Name, action: $"Create new managed application type {this.Name} in resource group {this.ResourceGroupName}")) + { + try + { + ManagedCluster cluster = SafeGetResource(() => this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.ClusterName)); + if (cluster == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Parent cluster '{this.ClusterName}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + } + else + { + var appType = CreateManagedApplicationType(this.Name, cluster.Location, this.Tags); + WriteObject(new PSManagedApplicationType(appType), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs new file mode 100644 index 000000000000..392a2dd9a388 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs @@ -0,0 +1,127 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationType", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(typeof(bool))] + public class RemoveAzServiceFabricManagedClusterApplicationType : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the name of the managed application type.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application type.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, + HelpMessage = "The managed application type resource.")] + public PSManagedApplicationType InputObject { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup)] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject)] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId)] + public SwitchParameter PassThru { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, HelpMessage = "Remove without prompt.")] + public SwitchParameter Force { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + switch (ParameterSetName) + { + case ByInputObject: + if (string.IsNullOrEmpty(this.InputObject?.Id)) + { + throw new ArgumentException("ResourceId is null."); + } + this.ResourceId = this.InputObject.Id; + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceGroup: + // intentionally left empty + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + + var resourceMessage = $"Managed ApplicationType '{this.Name}' on cluster {this.ClusterName}, in resource group {this.ResourceGroupName}"; + if (ShouldProcess(target: this.Name, action: $"Remove {resourceMessage}")) + { + ConfirmAction(Force.IsPresent, + "Do you want to remove the managed application type? This will remove all type versions under this resource. Please remove all managed applications under this resource before running this command.", + "Removing managed application type.", + resourceMessage, + () => + { + try + { + this.SfrpMcClient.ApplicationTypes.Delete(this.ResourceGroupName, this.ClusterName, this.Name); + if (PassThru) + { + WriteObject(true); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + }); + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationTypeProvider, out string resourceGroup, out string resourceName, out string parentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs new file mode 100644 index 000000000000..4d425edfcb10 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs @@ -0,0 +1,167 @@ +// ---------------------------------------------------------------------------------- +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationType", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(new Type[] { typeof(bool), typeof(PSManagedApplicationType) })] + public class SetAzServiceFabricManagedClusterApplicationType : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the name of the managed application type.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroup, HelpMessage = "Specify the tags as key/value pairs.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByInputObject, HelpMessage = "Specify the tags as key/value pairs.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceId, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application type.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, + HelpMessage = "The managed application type resource.")] + public PSManagedApplicationType InputObject { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, HelpMessage = "Remove without prompt.")] + public SwitchParameter Force { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + this.SetParams(); + ApplicationTypeResource updatedAppTypeParams = null; + switch (ParameterSetName) + { + case ByResourceGroup: + case ByResourceId: + updatedAppTypeParams = this.GetUpdatedAppTypeParams(); + break; + case ByInputObject: + updatedAppTypeParams = this.GetUpdatedAppTypeParams(this.InputObject); + break; + default: + throw new ArgumentException("Invalid parameter set", ParameterSetName); + } + + if (updatedAppTypeParams != null && ShouldProcess(target: this.Name, action: $"Update managed app type name {this.Name}, cluster: {this.ClusterName} in resource group {this.ResourceGroupName}")) + { + var managedAppType = this.SfrpMcClient.ApplicationTypes.CreateOrUpdate(this.ResourceGroupName, this.ClusterName, this.Name, updatedAppTypeParams); + + WriteObject(new PSManagedApplicationType(managedAppType), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + + private ApplicationTypeResource GetUpdatedAppTypeParams(ApplicationTypeResource inputObject = null) + { + ApplicationTypeResource currentAppType; + + if (inputObject == null) + { + currentAppType = SafeGetResource(() => + this.SfrpMcClient.ApplicationTypes.Get( + this.ResourceGroupName, + this.ClusterName, + this.Name), + false); + + if (currentAppType == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed application type version '{this.Name}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + return currentAppType; + } + } + else + { + currentAppType = inputObject; + } + + + if (this.IsParameterBound(c => c.Tags)) { + currentAppType.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + } + + return currentAppType; + } + + private void SetParams() + { + switch (ParameterSetName) + { + case ByResourceGroup: + break; + case ByInputObject: + if (string.IsNullOrEmpty(this.InputObject?.Id)) + { + throw new ArgumentException("ResourceId is null."); + } + SetParametersByResourceId(this.InputObject.Id); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationTypeProvider, out string resourceGroup, out string resourceName, out string parentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedApplicationCmdletBase.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedApplicationCmdletBase.cs new file mode 100644 index 000000000000..89cc8b9d2c17 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedApplicationCmdletBase.cs @@ -0,0 +1,160 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Common.Compute.Version_2018_04; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.ResourceManager.Version2018_05_01; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + public class ManagedApplicationCmdletBase : ServiceFabricManagedCmdletBase + { + #region TEST + internal static bool RunningTest = false; + #endregion + + /// + /// Resource group name + /// + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + /// + /// Cluster name + /// + [Parameter(Mandatory = true, Position = 1, HelpMessage = "Specify the name of the cluster.")] + [ValidateNotNullOrEmpty] + public virtual string ClusterName { get; set; } + + protected ApplicationTypeResource CreateManagedApplicationType(string applicationTypeName, string location, Hashtable tags = null, bool errorIfPresent = true) + { + ApplicationTypeResource applicationType = SafeGetResource(() => this.SfrpMcClient.ApplicationTypes.Get(this.ResourceGroupName, this.ClusterName, applicationTypeName)); + if (applicationType != null) + { + if (errorIfPresent) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed app type '{applicationTypeName}' already exists."), + "ResourceAlreadyExists", ErrorCategory.InvalidOperation, null)); + } + else + { + WriteVerbose($"Managed app type '{applicationTypeName}' already exists."); + } + + return applicationType; + } + else + { + WriteVerbose($"Creating managed app type '{applicationTypeName}'."); + ApplicationTypeResource newAppTypeParams = this.GetNewAppTypeParameters(location, tags:tags); + return this.SfrpMcClient.ApplicationTypes.CreateOrUpdate(this.ResourceGroupName, this.ClusterName, applicationTypeName, newAppTypeParams); + } + } + + private ApplicationTypeResource GetNewAppTypeParameters(string location, Hashtable tags = null) + { + return new ApplicationTypeResource( + location: location, + tags: tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string)); + } + + protected ApplicationTypeVersionResource CreateManagedApplicationTypeVersion(string applicationTypeName, string typeVersion, string location, string packageUrl, bool force, Hashtable tags = null) + { + var appTypeVersion = SafeGetResource(() => + this.SfrpMcClient.ApplicationTypeVersions.Get( + this.ResourceGroupName, + this.ClusterName, + applicationTypeName, + typeVersion), + false); + + if (appTypeVersion != null) + { + if (appTypeVersion.ProvisioningState == "Failed") + { + WriteVerbose($"Managed application type version '{applicationTypeName}':{typeVersion} already exists."); + string resourceMessage = $"Managed ApplicationTypeVersion {applicationTypeName}:{typeVersion}"; + ConfirmAction(force, + $"{resourceMessage} already exits but provisioning is in Failed state. Do you want to recreate the resource?", + "Recreating managed application type version.", + resourceMessage, + () => + { + appTypeVersion = CreateOrUpdateApplicationTypeVersion( + applicationTypeName: applicationTypeName, + typeVersion: typeVersion, + location: location, + packageUrl: packageUrl, + tags: tags); + }); + } + else + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed app type version '{applicationTypeName}' already exists."), + "ResourceAlreadyExists", ErrorCategory.InvalidOperation, null)); + } + } + else + { + appTypeVersion = CreateOrUpdateApplicationTypeVersion( + applicationTypeName: applicationTypeName, + typeVersion: typeVersion, + location: location, + packageUrl: packageUrl, + tags: tags); + } + + if (appTypeVersion.ProvisioningState == "Failed") + { + throw new PSInvalidOperationException($"Managed ApplicationTypeVersion {applicationTypeName}:{typeVersion} is in provisioning state {appTypeVersion.ProvisioningState}"); + } + + return appTypeVersion; + } + + private ApplicationTypeVersionResource CreateOrUpdateApplicationTypeVersion(string applicationTypeName, string typeVersion, string location, string packageUrl, Hashtable tags) + { + WriteVerbose($"Creating managed app type version '{applicationTypeName}':{typeVersion}."); + ApplicationTypeVersionResource managedAppTypeVersionParams = this.GetNewAppTypeVersionParameters(applicationTypeName, location, packageUrl, tags); + + var beginRequestResponse = this.SfrpMcClient.ApplicationTypeVersions.BeginCreateOrUpdateWithHttpMessagesAsync( + this.ResourceGroupName, + this.ClusterName, + applicationTypeName, + typeVersion, + managedAppTypeVersionParams).GetAwaiter().GetResult(); + + return this.PollLongRunningOperation(beginRequestResponse); + } + + private ApplicationTypeVersionResource GetNewAppTypeVersionParameters(string applicationTypeName, string location, string packageUrl, Hashtable tags) + { + return new ApplicationTypeVersionResource( + appPackageUrl: packageUrl, + name: this.ClusterName, + type: applicationTypeName, + location: location, + tags: tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string)); + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs index 2ec265294b39..60b2cbfd1652 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ServiceFabricCommonCmdletBase.cs @@ -53,6 +53,33 @@ private void InitializeManagementClients() #region Helper + protected void GetParametersByResourceId(string resourceId, string resourceType, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName) + { + ResourceIdentifier rId = new ResourceIdentifier(resourceId); + if (!rId.ResourceType.EndsWith(resourceType, StringComparison.OrdinalIgnoreCase)) + { + throw new PSArgumentException(string.Format("Invalid resource id {0}", resourceId)); + } + + resourceGroup = rId.ResourceGroupName; + resourceName = rId.ResourceName; + parentResourceName = string.Empty; + grandParentResourceName = string.Empty; + if (!string.IsNullOrEmpty(rId.ParentResource)) + { + var parent = rId.ParentResource.Split('/'); + if (parent.Length == 4) + { + parentResourceName = parent[3]; + grandParentResourceName = parent[1]; + } + else if (parent.Length == 2) + { + parentResourceName = parent[1]; + } + } + } + protected void GetParametersByResourceId(string resourceId, string resourceType, out string resourceGroup, out string resourceName, out string parentResourceName) { ResourceIdentifier rId = new ResourceIdentifier(resourceId); @@ -186,7 +213,7 @@ exception is Management.ServiceFabric.Models.ErrorModelException || new ErrorRecord(ex, string.Empty, ErrorCategory.NotSpecified, null)); } } - else if (exception is Management.ServiceFabric.Models.ErrorModelException) + else if (exception is Management.ServiceFabricManagedClusters.Models.ErrorModelException) { var errorModelException = (Management.ServiceFabricManagedClusters.Models.ErrorModelException)exception; if (errorModelException.Body != null) diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs new file mode 100644 index 000000000000..f1091656275f --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs @@ -0,0 +1,32 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + + public class PSManagedApplicationType : ApplicationTypeResource + { + public PSManagedApplicationType(ApplicationTypeResource appType) + : base( + id: appType.Id, + name: appType.Name, + type: appType.Type, + location: appType.Location, + provisioningState: appType.ProvisioningState, + tags: appType.Tags) + { + } + } +} From 5964ec4461ec24b8bd5f6aa9283f69e6da76d93e Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Fri, 5 Mar 2021 15:48:26 -0800 Subject: [PATCH 08/13] managed app type version cmdlets --- ...ricManagedClusterApplicationTypeVersion.cs | 115 +++++++++++ ...ricManagedClusterApplicationTypeVersion.cs | 102 +++++++++ ...ricManagedClusterApplicationTypeVersion.cs | 140 +++++++++++++ ...ricManagedClusterApplicationTypeVersion.cs | 193 ++++++++++++++++++ .../PSManagedApplicationTypeVersion.cs | 33 +++ 5 files changed, 583 insertions(+) create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs new file mode 100644 index 000000000000..9e3ebd7ce0a6 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -0,0 +1,115 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationTypeVersion", DefaultParameterSetName = ByResourceGroupAndCluster), OutputType(typeof(PSManagedApplicationTypeVersion))] + public class GetAzServiceFabricManagedClusterApplicationTypeVersion : ManagedApplicationCmdletBase + { + private const string ByResourceGroupAndCluster = "ByResourceGroupAndCluster"; + private const string ByVersion = "ByVersion"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByVersion, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByVersion, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the managed application type.")] + [Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, ParameterSetName = ByVersion, + HelpMessage = "Specify the name of the managed application type.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, Position = 3, ValueFromPipelineByPropertyName = true, ParameterSetName = ByVersion, + HelpMessage = "Specify the version of the managed application type.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeVersion")] + public string Version { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application type version.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + switch (ParameterSetName) + { + case ByResourceGroupAndCluster: + var managedAppTypeVersionList = this.ReturnListByPageResponse( + this.SfrpMcClient.ApplicationTypeVersions.ListByApplicationTypes(this.ResourceGroupName, this.ClusterName, this.Name), + this.SfrpMcClient.ApplicationTypeVersions.ListByApplicationTypesNext); + WriteObject(managedAppTypeVersionList.Select(appType => new PSManagedApplicationTypeVersion(appType)), true); + break; + case ByVersion: + GetByVersion(); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + GetByVersion(); + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + } + + private void GetByVersion() + { + var managedAppTypeVersion = this.SfrpMcClient.ApplicationTypeVersions.Get(this.ResourceGroupName, this.ClusterName, this.Name, this.Version); + WriteObject(new PSManagedApplicationTypeVersion(managedAppTypeVersion), false); + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationTypeVersionProvider, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = parentResourceName; + this.Version = resourceName; + this.ClusterName = grandParentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs new file mode 100644 index 000000000000..78ef2bd91f20 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -0,0 +1,102 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationTypeVersion", SupportsShouldProcess = true), OutputType(typeof(PSManagedApplicationTypeVersion))] + public class NewAzServiceFabricManagedClustersApplicationTypeVersion : ManagedApplicationCmdletBase + { + #region Paramters + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, + HelpMessage = "Specify the name of the managed application type")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, Position = 3, + HelpMessage = "Specify the managed application type version")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeVersion")] + public string Version { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the url of the application package sfpkg file")] + [ValidateNotNullOrEmpty] + public string PackageUrl { get; set; } + + [Parameter(Mandatory = false, ValueFromPipeline = true, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + if (ShouldProcess(target: this.Version, action: $"Create new managed application type version. typename: {this.Name}, version {this.Version} in resource group {this.ResourceGroupName}")) + { + try + { + ManagedCluster cluster = SafeGetResource(() => this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.ClusterName)); + if (cluster == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Parent cluster '{this.ClusterName}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + } + else + { + CreateManagedApplicationType(this.Name, cluster.Location, errorIfPresent: false); + var managedAppTypeVersion = CreateManagedApplicationTypeVersion( + applicationTypeName: this.Name, + typeVersion: this.Version, + location: cluster.Location, + packageUrl: this.PackageUrl, + force: this.Force.IsPresent, + tags: this.Tags); + WriteObject(new PSManagedApplicationTypeVersion(managedAppTypeVersion), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs new file mode 100644 index 000000000000..5c08ed621a25 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -0,0 +1,140 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationTypeVersion", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(typeof(bool))] + public class RemoveAzServiceFabricManagedClusterApplicationTypeVersion : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceGroup, HelpMessage = "Specify the name of the managed application type.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceGroup, HelpMessage = "Specify the managed application type version.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeVersion")] + public string Version { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application type version.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, + HelpMessage = "The managed application type version resource.")] + public PSManagedApplicationTypeVersion InputObject { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup)] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject)] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId)] + public SwitchParameter PassThru { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, HelpMessage = "Remove without prompt.")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + switch (ParameterSetName) + { + case ByInputObject: + if (string.IsNullOrEmpty(this.InputObject?.Id)) + { + throw new ArgumentException("ResourceId is null."); + } + this.ResourceId = InputObject.Id; + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceGroup: + // intentionally left empty + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + + var resourceMessage = $"Managed ApplicationType '{this.Name}' in resource group '{this.ResourceGroupName}', cluster name {this.ClusterName}"; + if (ShouldProcess(target: this.Version, action: $"Remove {resourceMessage}")) + { + ConfirmAction(Force.IsPresent, + "Do you want to remove the managed application type version? Please remove all managed applications under this resource before running this command.", + "Removing managed application type version.", + resourceMessage, + () => + { + try + { + var beginRequestResponse = this.SfrpMcClient.ApplicationTypeVersions.BeginDeleteWithHttpMessagesAsync( + this.ResourceGroupName, + this.ClusterName, + this.Name, + this.Version).GetAwaiter().GetResult(); + + this.PollLongRunningOperation(beginRequestResponse); + if (PassThru) + { + WriteObject(true); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + }); + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationTypeVersionProvider, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + this.Version = grandParentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs new file mode 100644 index 000000000000..7a3dd0ada3e4 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -0,0 +1,193 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplicationTypeVersion", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(typeof(PSManagedApplicationTypeVersion))] + public class SetAzServiceFabricManagedClustersApplicationTypeVersion : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + #region Paramters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceGroup, Position = 2, + HelpMessage = "Specify the name of the managed application type")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceGroup, Position = 3, + HelpMessage = "Specify the managed application type version")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationTypeVersion")] + public string Version { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the url of the application package sfpkg file")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the url of the application package sfpkg file")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the url of the application package sfpkg file")] + [ValidateNotNullOrEmpty] + public string PackageUrl { get; set; } + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroup, HelpMessage = "Specify the tags as key/value pairs.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceId, HelpMessage = "Specify the tags as key/value pairs.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByInputObject, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application type version.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, + HelpMessage = "The managed application type version resource.")] + public PSManagedApplicationTypeVersion InputObject { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + this.SetParams(); + ApplicationTypeVersionResource updatedAppTypeVersionParams = null; + switch (ParameterSetName) + { + case ByResourceGroup: + case ByResourceId: + updatedAppTypeVersionParams = this.GetUpdatedAppTypeVersionParams(); + break; + case ByInputObject: + updatedAppTypeVersionParams = this.GetUpdatedAppTypeVersionParams(this.InputObject); + break; + default: + throw new ArgumentException("Invalid parameter set", ParameterSetName); + } + + if (updatedAppTypeVersionParams != null && ShouldProcess(target: this.Version, action: $"Update managed application type version. typename: {this.Name}, version {this.Version} in resource group {this.ResourceGroupName}")) + { + var beginRequestResponse = this.SfrpMcClient.ApplicationTypeVersions.BeginCreateOrUpdateWithHttpMessagesAsync( + this.ResourceGroupName, this.ClusterName, this.Name, this.Version, updatedAppTypeVersionParams).GetAwaiter().GetResult(); + + var managedAppTypeVersion = this.PollLongRunningOperation(beginRequestResponse); + + WriteObject(new PSManagedApplicationTypeVersion(managedAppTypeVersion), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + + private ApplicationTypeVersionResource GetUpdatedAppTypeVersionParams(ApplicationTypeVersionResource inputObject = null) + { + ApplicationTypeVersionResource currentAppTypeVersion; + + if (inputObject == null) + { + currentAppTypeVersion = SafeGetResource(() => + this.SfrpMcClient.ApplicationTypeVersions.Get( + this.ResourceGroupName, + this.ClusterName, + this.Name, + this.Version), + false); + + if (currentAppTypeVersion == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed application type version '{this.Name}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + return currentAppTypeVersion; + } + } + else + { + currentAppTypeVersion = inputObject; + } + + if (this.IsParameterBound(c => c.PackageUrl)) + { + currentAppTypeVersion.AppPackageUrl = this.PackageUrl; + } + if (this.IsParameterBound(c => c.Tags)) + { + currentAppTypeVersion.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + } + + return currentAppTypeVersion; + } + + private void SetParams() + { + switch (ParameterSetName) + { + case ByResourceGroup: + break; + case ByInputObject: + if (string.IsNullOrEmpty(this.InputObject?.Id)) + { + throw new ArgumentException("ResourceId is null."); + } + SetParametersByResourceId(this.InputObject.Id); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationTypeVersionProvider, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = parentResourceName; + this.Version = resourceName; + this.ClusterName = grandParentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs new file mode 100644 index 000000000000..538f52db55a2 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs @@ -0,0 +1,33 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + + public class PSManagedApplicationTypeVersion : ApplicationTypeVersionResource + { + public PSManagedApplicationTypeVersion(ApplicationTypeVersionResource appTypeVersion) + : base( + appPackageUrl: appTypeVersion.AppPackageUrl, + id: appTypeVersion.Id, + name: appTypeVersion.Name, + type: appTypeVersion.Type, + location: appTypeVersion.Location, + provisioningState: appTypeVersion.ProvisioningState, + tags: appTypeVersion.Tags) + { + } + } +} From 70522447257e239f53ece9ecf6850dff97b72c16 Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Fri, 5 Mar 2021 15:49:22 -0800 Subject: [PATCH 09/13] managed app cmdlets --- ...zServiceFabricManagedClusterApplication.cs | 106 ++++ ...zServiceFabricManagedClusterApplication.cs | 179 ++++++ ...zServiceFabricManagedClusterApplication.cs | 130 ++++ ...zServiceFabricManagedClusterApplication.cs | 563 ++++++++++++++++++ .../ManagedClusters/PSManagedApplication.cs | 35 ++ .../Models/ManagedClusters/UpgradeMode.cs | 22 + 6 files changed, 1035 insertions(+) create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs new file mode 100644 index 000000000000..e26cc964a52c --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplication", DefaultParameterSetName = ByResourceGroupAndCluster), OutputType(typeof(PSManagedApplication))] + public class GetAzServiceFabricManagedClusterApplication : ManagedApplicationCmdletBase + { + private const string ByResourceGroupAndCluster = "ByResourceGroupAndCluster"; + private const string ByName = "ByName"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the managed application.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + switch (ParameterSetName) + { + case ByResourceGroupAndCluster: + var managedAppList = this.ReturnListByPageResponse( + this.SfrpMcClient.Applications.List(this.ResourceGroupName, this.ClusterName), + this.SfrpMcClient.Applications.ListNext); + WriteObject(managedAppList.Select(app => new PSManagedApplication(app)), true); + break; + case ByName: + GetByName(); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + GetByName(); + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + } + + private void GetByName() + { + var managedApp = this.SfrpMcClient.Applications.Get(this.ResourceGroupName, this.ClusterName, this.Name); + WriteObject(new PSManagedApplication(managedApp), false); + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationProvider, out string resourceGroup, out string resourceName, out string parentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs new file mode 100644 index 000000000000..e5beb8bdc137 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs @@ -0,0 +1,179 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplication", SupportsShouldProcess = true, DefaultParameterSetName = SkipAppTypeVersion), OutputType(typeof(PSManagedApplication))] + public class NewAzServiceFabricManagedClusterApplication : ManagedApplicationCmdletBase + { + protected const string SkipAppTypeVersion = "SkipAppTypeVersion"; + protected const string CreateAppTypeVersion = "CreateAppTypeVersion"; + + protected const string AppTypeArmResourceIdFormat = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.ServiceFabric/managedclusters/{2}/applicationTypes/{3}/versions/{4}"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = SkipAppTypeVersion, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ParameterSetName = CreateAppTypeVersion, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = SkipAppTypeVersion, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ParameterSetName = CreateAppTypeVersion, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ParameterSetName = SkipAppTypeVersion, + HelpMessage = "Specify the name of the managed application type")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = CreateAppTypeVersion, + HelpMessage = "Specify the name of the managed application type")] + [ValidateNotNullOrEmpty] + public string ApplicationTypeName { get; set; } + + [Parameter(Mandatory = true, Position = 3, ParameterSetName = SkipAppTypeVersion, + HelpMessage = "Specify the managed application type version")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = CreateAppTypeVersion, + HelpMessage = "Specify the managed application type version")] + [ValidateNotNullOrEmpty] + public string ApplicationTypeVersion { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SkipAppTypeVersion, + HelpMessage = "Specify the name of the managed application")] + [Parameter(Mandatory = true, ParameterSetName = CreateAppTypeVersion, + HelpMessage = "Specify the name of the managed application")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationName")] + public string Name { get; set; } + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = SkipAppTypeVersion, + HelpMessage = "Specify the application parameters as key/value pairs. These parameters must exist in the application manifest.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = CreateAppTypeVersion, + HelpMessage = "Specify the application parameters as key/value pairs. These parameters must exist in the application manifest.")] + [ValidateNotNullOrEmpty] + public Hashtable ApplicationParameter { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = CreateAppTypeVersion, + HelpMessage = "Specify the url of the application package sfpkg file")] + [ValidateNotNullOrEmpty] + public string PackageUrl { get; set; } + + [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = SkipAppTypeVersion, HelpMessage = "Specify the tags as key/value pairs.")] + [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = CreateAppTypeVersion, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + if (ShouldProcess(target: this.Name, action: + $"Create new application. name {this.Name}, typename: {this.ApplicationTypeName}, version {this.ApplicationTypeVersion}, in resource group {this.ResourceGroupName}")) + { + try + { + ManagedCluster cluster = SafeGetResource(() => this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.ClusterName)); + if (cluster == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Parent cluster '{this.ClusterName}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + } + else + { + if (ParameterSetName == CreateAppTypeVersion) + { + CreateManagedApplicationType(this.ApplicationTypeName, cluster.Location); + CreateManagedApplicationTypeVersion( + applicationTypeName: this.ApplicationTypeName, + typeVersion: this.ApplicationTypeVersion, + location: cluster.Location, + packageUrl: this.PackageUrl, + force: this.Force.IsPresent); + } + + var managedApp = CreateManagedApplication(cluster.Location); + WriteObject(new PSManagedApplication(managedApp), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + } + + private ApplicationResource CreateManagedApplication(string location) + { + var managedApp = SafeGetResource(() => + this.SfrpMcClient.Applications.Get( + this.ResourceGroupName, + this.ClusterName, + this.Name), + false); + + if (managedApp != null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed application '{this.Name}' already exists."), + "ResourceAlreadyExists", ErrorCategory.InvalidOperation, null)); + return managedApp; + } + + WriteVerbose($"Creating managed application '{this.Name}'"); + + ApplicationResource appParams = GetNewAppParameters(location); + + var beginRequestResponse = this.SfrpMcClient.Applications.BeginCreateOrUpdateWithHttpMessagesAsync( + this.ResourceGroupName, + this.ClusterName, + this.Name, + appParams).GetAwaiter().GetResult(); + + return this.PollLongRunningOperation(beginRequestResponse); + } + + private ApplicationResource GetNewAppParameters(string location) + { + return new ApplicationResource( + name: this.Name, + version: this.GetAppTypeArmResourceId(this.DefaultContext.Subscription.Id, this.ResourceGroupName, this.ClusterName, this.ApplicationTypeName, this.ApplicationTypeVersion), + parameters: this.ApplicationParameter?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string), + location: location, + tags: this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string)); + } + + private string GetAppTypeArmResourceId(string subscriptionId, string resourceGroup, string clusterName, string appTypeName, string appTypeVersion) + { + return string.Format(AppTypeArmResourceIdFormat, subscriptionId, resourceGroup, clusterName, appTypeName, appTypeVersion); + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs new file mode 100644 index 000000000000..e6f5aeb8c587 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs @@ -0,0 +1,130 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplication", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(typeof(bool))] + public class RemoveAzServiceFabriManagedClusterApplication : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the name of the managed application.")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, + HelpMessage = "The managed application resource.")] + public PSManagedApplication InputObject { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup)] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject)] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId)] + public SwitchParameter PassThru { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, HelpMessage = "Remove without prompt.")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + switch (ParameterSetName) + { + case ByInputObject: + this.ResourceId = InputObject.Id; + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceGroup: + // intentionally left empty + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + + var resourceMessage = $"Managed Application '{this.Name}' in resource group '{this.ResourceGroupName}', cluster name {this.ClusterName}"; + if (ShouldProcess(target: this.Name, action: $"Remove {resourceMessage}")) + { + ConfirmAction(Force.IsPresent, + $"Do you want to remove the {resourceMessage}? This will remove all managed services under this resource", + "Removing managed application.", + resourceMessage, + () => + { + try + { + var beginRequestResponse = this.SfrpMcClient.Applications.BeginDeleteWithHttpMessagesAsync( + this.ResourceGroupName, + this.ClusterName, + this.Name).GetAwaiter().GetResult(); + + this.PollLongRunningOperation(beginRequestResponse); + if (PassThru) + { + WriteObject(true); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + }); + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationProvider, out string resourceGroup, out string resourceName, out string parentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs new file mode 100644 index 000000000000..dec181b2feec --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs @@ -0,0 +1,563 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterApplication", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(typeof(PSManagedApplication))] + public class SetAzServiceFabricManagedClusterApplication : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + private const string ArmResourceIdDelimeter = "/"; + // Default Runtime Values + private Models.FailureAction FailureActionDefault = Models.FailureAction.Manual; + private string HealthCheckStableDurationDefault = TimeSpan.FromSeconds(120).ToString("c"); + private string HealthCheckRetryTimeoutDefault = TimeSpan.FromSeconds(600).ToString("c"); + private string HealthCheckWaitDurationDefault = TimeSpan.FromSeconds(0).ToString("c"); + private string UpgradeTimeoutDefault = TimeSpan.FromHours(12).ToString("c"); + private string UpgradeDomainTimeoutDefault = TimeSpan.FromHours(12).ToString("c"); + private int ServiceTypeUnhealthyServicesMaxPercentDefault = 0; + private int ServiceTypeMaxPercentUnhealthyReplicasPerPartitionDefault = 0; + private int ServiceTypeMaxPercentUnhealthyPartitionsPerServiceDefault = 0; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter("Microsoft.ServiceFabric/clusters", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the name of the application")] + [ValidateNotNullOrEmpty] + [Alias("ApplicationName")] + public string Name { get; set; } + + [Parameter(Mandatory = false, Position = 3, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the application type version")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specify the application type version")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specify the application type version")] + [ValidateNotNullOrEmpty] + public string ApplicationTypeVersion { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the application parameters as key/value pairs. These parameters must exist in the application manifest.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specify the application parameters as key/value pairs. These parameters must exist in the application manifest.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specify the application parameters as key/value pairs. These parameters must exist in the application manifest.")] + [ValidateNotNullOrEmpty] + public Hashtable ApplicationParameter { get; set; } + + #region upgrade policy params + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Indicates that the service host restarts even if the upgrade is a configuration-only change.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Indicates that the service host restarts even if the upgrade is a configuration-only change.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Indicates that the service host restarts even if the upgrade is a configuration-only change.")] + public SwitchParameter ForceRestart { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.")] + public SwitchParameter RecreateApplication { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum time that Service Fabric waits for a service to reconfigure into a safe state, if not already in a safe state, before Service Fabric proceeds with the upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum time that Service Fabric waits for a service to reconfigure into a safe state, if not already in a safe state, before Service Fabric proceeds with the upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum time that Service Fabric waits for a service to reconfigure into a safe state, if not already in a safe state, before Service Fabric proceeds with the upgrade.")] + [ValidateRange(0, int.MaxValue)] + public int UpgradeReplicaSetCheckTimeoutSec { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully.")] + [ValidateRange(0, int.MaxValue)] + public int InstanceCloseDelayDurationSec { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")] + public UpgradeMode UpgradeMode { get; set; } + + #region RollingUpgradeMonitoringPolicy + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the action to take if the monitored upgrade fails. The acceptable values for this parameter are Rollback or Manual.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the action to take if the monitored upgrade fails. The acceptable values for this parameter are Rollback or Manual.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the action to take if the monitored upgrade fails. The acceptable values for this parameter are Rollback or Manual.")] + public Models.FailureAction FailureAction { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the duration, in seconds, after which Service Fabric retries the health check if the previous health check fails.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the duration, in seconds, after which Service Fabric retries the health check if the previous health check fails.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the duration, in seconds, after which Service Fabric retries the health check if the previous health check fails.")] + [ValidateRange(0, int.MaxValue)] + public int HealthCheckRetryTimeoutSec { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the duration, in seconds, that Service Fabric waits before it performs the initial health check after it finishes the upgrade on the upgrade domain.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the duration, in seconds, that Service Fabric waits before it performs the initial health check after it finishes the upgrade on the upgrade domain.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the duration, in seconds, that Service Fabric waits before it performs the initial health check after it finishes the upgrade on the upgrade domain.")] + [ValidateRange(0, int.MaxValue)] + public int HealthCheckWaitDurationSec { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the duration, in seconds, that Service Fabric waits in order to verify that the application is stable before moving to the next upgrade domain or completing the upgrade. This wait duration prevents undetected changes of health right after the health check is performed.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the duration, in seconds, that Service Fabric waits in order to verify that the application is stable before moving to the next upgrade domain or completing the upgrade. This wait duration prevents undetected changes of health right after the health check is performed.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the duration, in seconds, that Service Fabric waits in order to verify that the application is stable before moving to the next upgrade domain or completing the upgrade. This wait duration prevents undetected changes of health right after the health check is performed.")] + [ValidateRange(0, int.MaxValue)] + public int HealthCheckStableDurationSec { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum time, in seconds, that Service Fabric takes to upgrade a single upgrade domain. After this period, the upgrade fails.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum time, in seconds, that Service Fabric takes to upgrade a single upgrade domain. After this period, the upgrade fails.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum time, in seconds, that Service Fabric takes to upgrade a single upgrade domain. After this period, the upgrade fails.")] + [ValidateRange(0, int.MaxValue)] + public int UpgradeDomainTimeoutSec { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum time, in seconds, that Service Fabric takes for the entire upgrade. After this period, the upgrade fails.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum time, in seconds, that Service Fabric takes for the entire upgrade. After this period, the upgrade fails.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum time, in seconds, that Service Fabric takes for the entire upgrade. After this period, the upgrade fails.")] + [ValidateRange(0, int.MaxValue)] + public int UpgradeTimeoutSec { get; set; } + + #endregion + + #region ApplicationHealthPolicy + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Indicates whether to treat a warning health event as an error event during health evaluation.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Indicates whether to treat a warning health event as an error event during health evaluation.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Indicates whether to treat a warning health event as an error event during health evaluation.")] + public SwitchParameter ConsiderWarningAsError { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum percent of unhelthy partitions per service allowed by the health policy for the default service type to use for the monitored upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum percent of unhelthy partitions per service allowed by the health policy for the default service type to use for the monitored upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum percent of unhelthy partitions per service allowed by the health policy for the default service type to use for the monitored upgrade.")] + [ValidateRange(0, 100)] + public int DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum percent of unhelthy replicas per service allowed by the health policy for the default service type to use for the monitored upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum percent of unhelthy replicas per service allowed by the health policy for the default service type to use for the monitored upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum percent of unhelthy replicas per service allowed by the health policy for the default service type to use for the monitored upgrade.")] + [ValidateRange(0, 100)] + public int DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum percent of unhelthy services allowed by the health policy for the default service type to use for the monitored upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum percent of unhelthy services allowed by the health policy for the default service type to use for the monitored upgrade.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum percent of unhelthy services allowed by the health policy for the default service type to use for the monitored upgrade.")] + [ValidateRange(0, 100)] + public int DefaultServiceTypeUnhealthyServicesMaxPercent { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the maximum percentage of the application instances deployed on the nodes in the cluster that have a health state of error before the application health state for the cluster is error.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the maximum percentage of the application instances deployed on the nodes in the cluster that have a health state of error before the application health state for the cluster is error.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the maximum percentage of the application instances deployed on the nodes in the cluster that have a health state of error before the application health state for the cluster is error.")] + [ValidateRange(0, 100)] + public int UnhealthyDeployedApplicationsMaxPercent { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, + HelpMessage = "Specifies the map of the health policy to use for different service types as a hash table in the following format: @ {\"ServiceTypeName\" : \"MaxPercentUnhealthyPartitionsPerService,MaxPercentUnhealthyReplicasPerPartition,MaxPercentUnhealthyServices\"}. For example: @{ \"ServiceTypeName01\" = \"5,10,5\"; \"ServiceTypeName02\" = \"5,5,5\" }")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, + HelpMessage = "Specifies the map of the health policy to use for different service types as a hash table in the following format: @ {\"ServiceTypeName\" : \"MaxPercentUnhealthyPartitionsPerService,MaxPercentUnhealthyReplicasPerPartition,MaxPercentUnhealthyServices\"}. For example: @{ \"ServiceTypeName01\" = \"5,10,5\"; \"ServiceTypeName02\" = \"5,5,5\" }")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, + HelpMessage = "Specifies the map of the health policy to use for different service types as a hash table in the following format: @ {\"ServiceTypeName\" : \"MaxPercentUnhealthyPartitionsPerService,MaxPercentUnhealthyReplicasPerPartition,MaxPercentUnhealthyServices\"}. For example: @{ \"ServiceTypeName01\" = \"5,10,5\"; \"ServiceTypeName02\" = \"5,5,5\" }")] + public Hashtable ServiceTypeHealthPolicyMap { get; set; } + + #endregion + + #endregion + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed application.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, + HelpMessage = "The managed application resource.")] + public PSManagedApplication InputObject { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + this.SetParams(); + ApplicationResource updatedAppParams = null; + switch (ParameterSetName) + { + case ByResourceGroup: + case ByResourceId: + updatedAppParams = this.GetUpdatedAppParams(); + break; + case ByInputObject: + updatedAppParams = this.GetUpdatedAppParams(this.InputObject); + break; + default: + throw new ArgumentException("Invalid parameter set", ParameterSetName); + } + if (updatedAppParams != null && ShouldProcess(target: this.Name, action: $"Update managed application name {this.Name}, cluster: {this.ClusterName} in resource group {this.ResourceGroupName}")) + { + var beginRequestResponse = this.SfrpMcClient.Applications.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.Name, updatedAppParams) + .GetAwaiter().GetResult(); + + var managedApp = this.PollLongRunningOperation(beginRequestResponse); + + WriteObject(new PSManagedApplication(managedApp), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + + private ApplicationResource GetUpdatedAppParams(ApplicationResource inputObject = null) + { + ApplicationResource currentApp; + if (inputObject == null) + { + currentApp = SafeGetResource(() => + this.SfrpMcClient.Applications.Get( + this.ResourceGroupName, + this.ClusterName, + this.Name), + false); + + if (currentApp == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed application '{this.Name}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + return currentApp; + } + } + else + { + currentApp = inputObject; + } + + WriteVerbose($"Updating managed application '{this.Name}'"); + + if (!string.IsNullOrEmpty(this.ApplicationTypeVersion)) + { + currentApp.Version = SetAppTypeVersion(currentApp.Version, this.ApplicationTypeVersion); + } + + if (this.IsParameterBound(c => c.ApplicationParameter)) + { + currentApp.Parameters = this.ApplicationParameter?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + } + + if (this.IsParameterBound(c => c.Tags)) + { + currentApp.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + } + + currentApp.UpgradePolicy = SetUpgradePolicy(currentApp.UpgradePolicy); + + return currentApp; + } + + private ApplicationUpgradePolicy SetUpgradePolicy(ApplicationUpgradePolicy currentPolicy) + { + if (currentPolicy == null) + { + currentPolicy = new ApplicationUpgradePolicy(); + } + + if (this.IsParameterBound(c => c.ForceRestart)) + { + currentPolicy.ForceRestart = this.ForceRestart.ToBool(); + } + + if (this.IsParameterBound(c => c.RecreateApplication)) + { + currentPolicy.RecreateApplication = this.RecreateApplication.ToBool(); + } + + if (this.IsParameterBound(c => c.UpgradeReplicaSetCheckTimeoutSec)) + { + currentPolicy.UpgradeReplicaSetCheckTimeout = this.UpgradeReplicaSetCheckTimeoutSec; + } + + if (this.IsParameterBound(c => c.InstanceCloseDelayDurationSec)) + { + currentPolicy.InstanceCloseDelayDuration = this.InstanceCloseDelayDurationSec; + } + + if (this.IsParameterBound(c => c.UpgradeMode)) + { + currentPolicy.UpgradeMode = this.UpgradeMode.ToString(); + } + + if (this.RecreateApplication.ToBool()) + { + if ( + this.IsParameterBound(c => c.UpgradeReplicaSetCheckTimeoutSec) || this.IsParameterBound(c => c.InstanceCloseDelayDurationSec) || + this.IsParameterBound(c => c.UpgradeMode) ||this.IsParameterBound(c => c.ForceRestart) || + // RollingUpgradeMonitoringPolicy + this.IsParameterBound(c => c.UpgradeDomainTimeoutSec) || this.IsParameterBound(c => c.UpgradeTimeoutSec) || + this.IsParameterBound(c => c.HealthCheckWaitDurationSec) || this.IsParameterBound(c => c.HealthCheckRetryTimeoutSec) || + this.IsParameterBound(c => c.HealthCheckStableDurationSec) || this.IsParameterBound(c => c.FailureAction) || + // ApplicationHealthPolicy + this.IsParameterBound(c => c.ServiceTypeHealthPolicyMap) || this.IsParameterBound(c => c.UnhealthyDeployedApplicationsMaxPercent) || + this.IsParameterBound(c => c.DefaultServiceTypeUnhealthyServicesMaxPercent) || + this.IsParameterBound(c => c.DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition) || + this.IsParameterBound(c => c.DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService) || + this.IsParameterBound(c => c.DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService) + ) + { + throw new InvalidOperationException("If RecreateApplication=True, no other parameters are accepted."); + } + } + else + { + // RollingUpgradeMonitoringPolicy + if (currentPolicy.RollingUpgradeMonitoringPolicy == null) + { + // initialize with defaults + currentPolicy.RollingUpgradeMonitoringPolicy = new RollingUpgradeMonitoringPolicy( + failureAction: FailureActionDefault.ToString(), + healthCheckStableDuration: HealthCheckStableDurationDefault, + healthCheckRetryTimeout: HealthCheckRetryTimeoutDefault, + healthCheckWaitDuration: HealthCheckWaitDurationDefault, + upgradeTimeout: UpgradeTimeoutDefault, + upgradeDomainTimeout: UpgradeDomainTimeoutDefault); + } + + if (this.IsParameterBound(c => c.FailureAction)) + { + currentPolicy.RollingUpgradeMonitoringPolicy.FailureAction = this.FailureAction.ToString(); + } + + if (this.IsParameterBound(c => c.HealthCheckRetryTimeoutSec)) + { + currentPolicy.RollingUpgradeMonitoringPolicy.HealthCheckRetryTimeout = TimeSpan.FromSeconds(this.HealthCheckRetryTimeoutSec).ToString("c"); + } + + if (this.IsParameterBound(c => c.HealthCheckWaitDurationSec)) + { + currentPolicy.RollingUpgradeMonitoringPolicy.HealthCheckWaitDuration = TimeSpan.FromSeconds(this.HealthCheckWaitDurationSec).ToString("c"); + } + + if (this.IsParameterBound(c => c.HealthCheckStableDurationSec)) + { + currentPolicy.RollingUpgradeMonitoringPolicy.HealthCheckStableDuration = TimeSpan.FromSeconds(this.HealthCheckStableDurationSec).ToString("c"); + } + + if (this.IsParameterBound(c => c.UpgradeDomainTimeoutSec)) + { + currentPolicy.RollingUpgradeMonitoringPolicy.UpgradeDomainTimeout = TimeSpan.FromSeconds(this.UpgradeDomainTimeoutSec).ToString("c"); + } + + if (this.IsParameterBound(c => c.UpgradeTimeoutSec)) + { + currentPolicy.RollingUpgradeMonitoringPolicy.UpgradeTimeout = TimeSpan.FromSeconds(this.UpgradeTimeoutSec).ToString("c"); + } + + //ApplicationHealthPolicy + if (currentPolicy.ApplicationHealthPolicy == null) + { + currentPolicy.ApplicationHealthPolicy = new ApplicationHealthPolicy(); + } + + if (this.IsParameterBound(c => c.ConsiderWarningAsError)) + { + currentPolicy.ApplicationHealthPolicy.ConsiderWarningAsError = this.ConsiderWarningAsError.ToBool(); + } + + if (currentPolicy.ApplicationHealthPolicy.DefaultServiceTypeHealthPolicy == null) + { + currentPolicy.ApplicationHealthPolicy.DefaultServiceTypeHealthPolicy = new ServiceTypeHealthPolicy( + maxPercentUnhealthyPartitionsPerService: ServiceTypeMaxPercentUnhealthyPartitionsPerServiceDefault, + maxPercentUnhealthyReplicasPerPartition: ServiceTypeMaxPercentUnhealthyReplicasPerPartitionDefault, + maxPercentUnhealthyServices: ServiceTypeUnhealthyServicesMaxPercentDefault); + } + + if (this.IsParameterBound(c => c.DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService)) + { + currentPolicy.ApplicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyPartitionsPerService = + this.DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService; + } + + if (this.IsParameterBound(c => c.DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition)) + { + currentPolicy.ApplicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyReplicasPerPartition = + this.DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition; + } + + if (this.IsParameterBound(c => c.DefaultServiceTypeUnhealthyServicesMaxPercent)) + { + currentPolicy.ApplicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyServices = this.DefaultServiceTypeUnhealthyServicesMaxPercent; + } + + if (this.IsParameterBound(c => c.UnhealthyDeployedApplicationsMaxPercent)) + { + currentPolicy.ApplicationHealthPolicy.MaxPercentUnhealthyDeployedApplications = this.UnhealthyDeployedApplicationsMaxPercent; + } + + if (this.IsParameterBound(c => c.ServiceTypeHealthPolicyMap)) + { + if (this.ServiceTypeHealthPolicyMap == null) + { + currentPolicy.ApplicationHealthPolicy.ServiceTypeHealthPolicyMap = null; + } + else + { + if (currentPolicy.ApplicationHealthPolicy.ServiceTypeHealthPolicyMap == null) + { + currentPolicy.ApplicationHealthPolicy.ServiceTypeHealthPolicyMap = new Dictionary(); + } + + foreach (DictionaryEntry entry in this.ServiceTypeHealthPolicyMap) + { + currentPolicy.ApplicationHealthPolicy.ServiceTypeHealthPolicyMap.Add(entry.Key as string, this.ParseServiceTypeHealthPolicy(entry.Value as string)); + } + } + } + } + + return currentPolicy; + } + + private ServiceTypeHealthPolicy ParseServiceTypeHealthPolicy(string serviceTypeHealthPolicy) + { + if (string.IsNullOrEmpty(serviceTypeHealthPolicy)) + { + return new ServiceTypeHealthPolicy(); + } + + string[] policyFields = serviceTypeHealthPolicy.Split(',', ' '); + + if (policyFields.Length != 3) + { + throw new ArgumentException("Invalid Service Type health policy, the input should follow the pattern & quot; < MaxPercentUnhealthyPartitionsPerService & gt;,< MaxPercentUnhealthyReplicasPerPartition & gt;,< MaxPercentUnhealthyServices & gt; ". And each value is byte.One example is “5,10,5”."); + } + + return new ServiceTypeHealthPolicy + { + MaxPercentUnhealthyPartitionsPerService = int.Parse(policyFields[0]), + MaxPercentUnhealthyReplicasPerPartition = int.Parse(policyFields[1]), + MaxPercentUnhealthyServices = int.Parse(policyFields[2]) + }; + } + + private void SetParams() + { + switch (ParameterSetName) + { + case ByResourceGroup: + break; + case ByInputObject: + if (string.IsNullOrEmpty(this.InputObject?.Id)) + { + throw new ArgumentException("ResourceId is null."); + } + SetParametersByResourceId(this.InputObject.Id); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.applicationProvider, out string resourceGroup, out string resourceName, out string parentResourceName); + this.ResourceGroupName = resourceGroup; + this.Name = resourceName; + this.ClusterName = parentResourceName; + } + + private string SetAppTypeVersion(string oldVersion, string newVersionName) + { + var tokens = oldVersion.Split(new string[] { ArmResourceIdDelimeter }, StringSplitOptions.RemoveEmptyEntries); + tokens[tokens.Length - 1] = newVersionName; + return string.Join(ArmResourceIdDelimeter, tokens); + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs new file mode 100644 index 000000000000..5b8790db4f92 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + + public class PSManagedApplication : ApplicationResource + { + public PSManagedApplication(ApplicationResource app) + : base( + id: app.Id, + name: app.Name, + type: app.Type, + location: app.Location, + tags: app.Tags, + version: app.Version, + parameters: app.Parameters, + upgradePolicy: app.UpgradePolicy, + provisioningState: app.ProvisioningState) + { + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs new file mode 100644 index 000000000000..85b4fb0ca9cc --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + public enum UpgradeMode + { + Monitored, + UnmonitoredAuto + } +} From a8634033398f4a04460d0c75dcac51b0ff25881c Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Fri, 5 Mar 2021 15:50:19 -0800 Subject: [PATCH 10/13] managed service cmdlets and module export update --- .../ServiceFabric/Az.ServiceFabric.psd1 | 18 +- ...GetAzServiceFabricManagedClusterService.cs | 114 ++++ ...NewAzServiceFabricManagedClusterService.cs | 610 ++++++++++++++++++ ...oveAzServiceFabricManagedClusterService.cs | 136 ++++ ...SetAzServiceFabricManagedClusterService.cs | 518 +++++++++++++++ .../ManagedClusters/PSManagedService.cs | 32 + .../ManagedClusters/PSServiceCorrelation.cs | 35 + .../Models/ManagedClusters/PSServiceMetric.cs | 48 ++ .../ServicePackageActivationModeEnum.cs | 22 + 9 files changed, 1532 insertions(+), 1 deletion(-) create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs create mode 100644 src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs create mode 100644 src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index c68566db7f99..2b632d6cd125 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -113,7 +113,23 @@ CmdletsToExport = 'Add-AzServiceFabricClientCertificate', 'Remove-AzServiceFabricManagedNodeTypeVMExtension', 'Restart-AzServiceFabricManagedNodeType', 'Update-AzServiceFabricNodeType', - 'Update-AzServiceFabricVmImage' + 'Update-AzServiceFabricVmImage', + 'New-AzServiceFabricManagedClusterApplication', + 'Get-AzServiceFabricManagedClusterApplication', + 'Set-AzServiceFabricManagedClusterApplication', + 'Remove-AzServiceFabricManagedClusterApplication', + 'New-AzServiceFabricManagedClusterApplicationType', + 'Get-AzServiceFabricManagedClusterApplicationType', + 'Set-AzServiceFabricManagedClusterApplicationType', + 'Remove-AzServiceFabricManagedClusterApplicationType', + 'New-AzServiceFabricManagedClusterApplicationTypeVersion', + 'Get-AzServiceFabricManagedClusterApplicationTypeVersion', + 'Set-AzServiceFabricManagedClusterApplicationTypeVersion', + 'Remove-AzServiceFabricManagedClusterApplicationTypeVersion', + 'New-AzServiceFabricManagedClusterService', + 'Get-AzServiceFabricManagedClusterService', + 'Set-AzServiceFabricManagedClusterService', + 'Remove-AzServiceFabricManagedClusterService' # Variables to export from this module # VariablesToExport = @() diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs new file mode 100644 index 000000000000..44dcbcc73830 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterService", DefaultParameterSetName = ByResourceGroupAndCluster), OutputType(typeof(PSManagedService))] + public class GetAzServiceFabricManagedClusterService : ManagedApplicationCmdletBase + { + private const string ByResourceGroupAndCluster = "ByResourceGroupAndCluster"; + private const string ByName = "ByName"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroupAndCluster, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the managed application.")] + [ValidateNotNullOrEmpty] + public string ApplicationName { get; set; } + + [Parameter(Mandatory = true, Position = 3, ValueFromPipelineByPropertyName = true, ParameterSetName = ByName, + HelpMessage = "Specify the name of the managed service.")] + [ValidateNotNullOrEmpty] + [Alias("ServiceName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed service.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + try + { + switch (ParameterSetName) + { + case ByResourceGroupAndCluster: + var managedServiceList = this.ReturnListByPageResponse( + this.SfrpMcClient.Services.ListByApplications(this.ResourceGroupName, this.ClusterName, this.ApplicationName), + this.SfrpMcClient.Services.ListByApplicationsNext); + WriteObject(managedServiceList.Select(service => new PSManagedService(service)), true); + break; + case ByName: + GetByName(); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + GetByName(); + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + } + + private void GetByName() + { + var managedService = this.SfrpMcClient.Services.Get(this.ResourceGroupName, this.ClusterName, this.ApplicationName, this.Name); + WriteObject(new PSManagedService(managedService), false); + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.serviceProvider, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName); + this.ResourceGroupName = resourceGroup; + this.ClusterName = grandParentResourceName; + this.ApplicationName = parentResourceName; + this.Name = resourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs new file mode 100644 index 000000000000..5eafd8c024fc --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs @@ -0,0 +1,610 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.Internal.Resources; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterService", SupportsShouldProcess = true, DefaultParameterSetName = StatelessSingleton), OutputType(typeof(PSManagedService))] + public class NewAzServiceFabricManagedClusterService : ManagedApplicationCmdletBase + { + private const string StatelessSingleton = "Stateless-Singleton"; + private const string StatelessUniformInt64 = "Stateless-UniformInt64Range"; + private const string StatelessNamed = "Stateless-Named"; + private const string StatefulSingleton = "Stateful-Singleton"; + private const string StatefulUniformInt64 = "Stateful-UniformInt64Range"; + private const string StatefulNamed = "Stateful-Named"; + + #region Parameters + #region common required params + + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the name of the managed application.")] + [ValidateNotNullOrEmpty] + public string ApplicationName { get; set; } + + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the name of the managed service.")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the name of the managed service.")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the name of the managed service.")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the name of the managed service.")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the name of the managed service.")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the name of the managed service.")] + [ValidateNotNullOrEmpty] + [Alias("ServiceName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the service type name of the managed application, should exist in the application manifest.")] + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the service type name of the managed application, should exist in the application manifest.")] + [Parameter(Mandatory = true, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the service type name of the managed application, should exist in the application manifest.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the service type name of the managed application, should exist in the application manifest.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the service type name of the managed application, should exist in the application manifest.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the service type name of the managed application, should exist in the application manifest.")] + [ValidateNotNullOrEmpty] + [Alias("ServiceType")] + public string Type { get; set; } + + #endregion + + #region Stateless params + + [Parameter(Mandatory = true, ParameterSetName = StatelessSingleton, + HelpMessage = "Use for stateless service")] + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Use for stateless service")] + [Parameter(Mandatory = true, ParameterSetName = StatelessNamed, + HelpMessage = "Use for stateless service")] + public SwitchParameter Stateless { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the instance count for the managed service")] + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the instance count for the managed service")] + [Parameter(Mandatory = true, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the instance count for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(-1, int.MaxValue)] + public int InstanceCount { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the minimum instance count for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the minimum instance count for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the minimum instance count for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, int.MaxValue)] + public int MinInstanceCount { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the minimum instance percentage for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the minimum instance percentage for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the minimum instance percentage for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, 100)] + public int MinInstancePercentage { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan InstanceCloseDelayDuration { get; set; } + #endregion + + #region Stateful params + + [Parameter(Mandatory = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Use for stateful service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Use for stateful service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, + HelpMessage = "Use for stateful service")] + public SwitchParameter Stateful { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the target replica set size for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(1, int.MaxValue)] + public int TargetReplicaSetSize { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the min replica set size for the managed service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the min replica set size for the managed service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the min replica set size for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(1, int.MaxValue)] + public int MinReplicaSetSize { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the target replica set size for the managed service")] + public SwitchParameter HasPersistedState { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the drop source replica on move property for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the drop source replica on move property for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the drop source replica on move property for the managed service")] + public SwitchParameter DropSourceReplicaOnMove { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan ReplicaRestartWaitDuration { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan QuorumLossWaitDuration { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan StandByReplicaKeepDuration { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan ServicePlacementTimeLimit { get; set; } + #endregion + + #region common optional params + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [ValidateNotNullOrEmpty] + public MoveCostEnum DefaultMoveCost { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [ValidateNotNullOrEmpty] + public string PlacementConstraint { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + public PSServiceMetric[] Metric { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + public PSServiceCorrelation[] Correlation { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [ValidateNotNullOrEmpty] + public string ServiceDnsName { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessSingleton, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessNamed, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulSingleton, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulNamed, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [ValidateNotNullOrEmpty] + public ServicePackageActivationModeEnum ServicePackageActivationMode { get; set; } + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + + #region partition params + + [Parameter(Mandatory = true, ParameterSetName = StatelessSingleton, + HelpMessage = "Indicates that the service uses the singleton partition scheme. Singleton partitions are typically used when the service does not require any additional routing.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulSingleton, + HelpMessage = "Indicates that the service uses the singleton partition scheme. Singleton partitions are typically used when the service does not require any additional routing.")] + [ValidateNotNullOrEmpty] + public SwitchParameter PartitionSchemeSingleton { get; set; } + + #region UniformInt64 + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Indicates that the service uses the UniformInt64 partition scheme. This means that each partition owns a range of int64 keys.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Indicates that the service uses the UniformInt64 partition scheme. This means that each partition owns a range of int64 keys.")] + [ValidateNotNullOrEmpty] + public SwitchParameter PartitionSchemeUniformInt64 { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the number of partitions.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the number of partitions.")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, int.MaxValue)] + public int PartitionCount { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the lower bound of the partition key range.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the lower bound of the partition key range.")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, int.MaxValue)] + public long LowKey { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessUniformInt64, + HelpMessage = "Specify the upper bound of the partition key range.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulUniformInt64, + HelpMessage = "Specify the upper bound of the partition key range.")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, int.MaxValue)] + public long HighKey { get; set; } + #endregion + + #region Named Partition + [Parameter(Mandatory = true, ParameterSetName = StatelessNamed, + HelpMessage = "Indicates that the service uses the named partition scheme. Services using this model usually have data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, + HelpMessage = "Indicates that the service uses the named partition scheme. Services using this model usually have data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.")] + [ValidateNotNullOrEmpty] + public SwitchParameter PartitionSchemeNamed { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessNamed, + HelpMessage = "Indicates that the service uses the named partition scheme. Services using this model usually have data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, + HelpMessage = "Indicates that the service uses the named partition scheme. Services using this model usually have data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.")] + public string[] PartitionNames { get; set; } + #endregion + + #endregion + + #endregion + #endregion + + + public override void ExecuteCmdlet() + { + if (ShouldProcess(target: this.Name, action: $"Create new Service. name {this.Name} in application: {this.ApplicationName}, cluster {this.ClusterName} in resource group {this.ResourceGroupName}")) + { + try + { + ManagedCluster cluster = SafeGetResource(() => this.SfrpMcClient.ManagedClusters.Get(this.ResourceGroupName, this.ClusterName)); + if (cluster == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Parent cluster '{this.ClusterName}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + } + else + { + var service = CreateService(cluster.Location); + WriteObject(new PSManagedService(service), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + } + + private ServiceResource CreateService(string location) + { + var service = SafeGetResource(() => + this.SfrpMcClient.Services.Get( + this.ResourceGroupName, + this.ClusterName, + this.ApplicationName, + this.Name), + false); + + if (service != null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed Service '{this.Name}' already exists."), + "ResourceAlreadyExists", ErrorCategory.InvalidOperation, null)); + return service; + } + + WriteVerbose($"Creating service '{this.Name}.'"); + + ServiceResource serviceParams = GetNewServiceParameters(location); + + var beginRequestResponse = this.SfrpMcClient.Services.BeginCreateOrUpdateWithHttpMessagesAsync( + this.ResourceGroupName, + this.ClusterName, + this.ApplicationName, + this.Name, + serviceParams).GetAwaiter().GetResult(); + + return this.PollLongRunningOperation(beginRequestResponse); + } + + #region Helper methods + private ServiceResource GetNewServiceParameters(string location) + { + ServiceResource service = new ServiceResource() + { + Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string), + Location = location, + Properties = new ServiceResourceProperties() + }; + + switch (ParameterSetName) + { + case StatelessSingleton: + case StatelessUniformInt64: + case StatelessNamed: + StatelessServiceProperties statelessProperties = new StatelessServiceProperties(); + // Required + statelessProperties.InstanceCount = this.InstanceCount; + + // Optional + if (this.IsParameterBound(c => c.InstanceCloseDelayDuration)) + { + statelessProperties.InstanceCloseDelayDuration = this.InstanceCloseDelayDuration.ToString(); + } + if (this.IsParameterBound(c => c.MinInstancePercentage)) + { + statelessProperties.MinInstancePercentage = this.MinInstancePercentage; + } + if (this.IsParameterBound(c => c.MinInstanceCount)) + { + statelessProperties.MinInstanceCount = this.MinInstanceCount; + } + + service.Properties = statelessProperties; + break; + case StatefulSingleton: + case StatefulUniformInt64: + case StatefulNamed: + StatefulServiceProperties statefulProperties = new StatefulServiceProperties(); + if (this.IsParameterBound(c => c.ServicePlacementTimeLimit)) + { + statefulProperties.ServicePlacementTimeLimit = this.ServicePlacementTimeLimit.ToString(); + } + if (this.IsParameterBound(c => c.StandByReplicaKeepDuration)) + { + statefulProperties.StandByReplicaKeepDuration = this.StandByReplicaKeepDuration.ToString(); + } + if (this.IsParameterBound(c => c.QuorumLossWaitDuration)) + { + statefulProperties.QuorumLossWaitDuration = this.QuorumLossWaitDuration.ToString(); + } + if (this.IsParameterBound(c => c.ReplicaRestartWaitDuration)) + { + statefulProperties.ReplicaRestartWaitDuration = this.ReplicaRestartWaitDuration.ToString(); + } + if (this.IsParameterBound(c => c.DropSourceReplicaOnMove)) + { + statefulProperties.DropSourceReplicaOnMove = this.DropSourceReplicaOnMove.ToBool(); + } + if (this.IsParameterBound(c => c.HasPersistedState)) + { + statefulProperties.HasPersistedState = this.HasPersistedState.ToBool(); + } + if (this.IsParameterBound(c => c.MinReplicaSetSize)) + { + statefulProperties.MinReplicaSetSize = this.MinReplicaSetSize; + } + if (this.IsParameterBound(c => c.TargetReplicaSetSize)) + { + statefulProperties.TargetReplicaSetSize = this.TargetReplicaSetSize; + } + + service.Properties = statefulProperties; + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + SetCommonProperties(service.Properties); + + return service; + } + + private void SetCommonProperties(ServiceResourceProperties properties) + { + // Required + properties.ServiceTypeName = this.Type; + properties.PartitionDescription = SetPartitionDescription(); + + // Optional + if (this.IsParameterBound(c => c.ServicePackageActivationMode)) + { + properties.ServicePackageActivationMode = this.ServicePackageActivationMode.ToString(); + } + if (this.IsParameterBound(c => c.DefaultMoveCost)) + { + properties.DefaultMoveCost = this.DefaultMoveCost.ToString(); + } + if (this.IsParameterBound(c => c.PlacementConstraint)) + { + properties.PlacementConstraints = this.PlacementConstraint; + } + if (this.IsParameterBound(c => c.Metric)) + { + properties.ServiceLoadMetrics = this.Metric; + } + if (this.IsParameterBound(c => c.Correlation)) + { + properties.CorrelationScheme = this.Correlation; + } + if (this.IsParameterBound(c => c.ServiceDnsName)) + { + properties.ServiceDnsName = this.ServiceDnsName; + } + } + + private Partition SetPartitionDescription() + { + switch (ParameterSetName) + { + case StatelessSingleton: + case StatefulSingleton: + return new SingletonPartitionScheme(); + case StatelessUniformInt64: + case StatefulUniformInt64: + return new UniformInt64RangePartitionScheme(this.PartitionCount, this.LowKey, this.HighKey); + case StatelessNamed: + case StatefulNamed: + return new NamedPartitionScheme(this.PartitionNames); + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + } + #endregion + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs new file mode 100644 index 000000000000..2b208d7c92c0 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs @@ -0,0 +1,136 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterService", DefaultParameterSetName = ByResourceGroup, SupportsShouldProcess = true), OutputType(typeof(bool))] + public class RemoveAzServiceFabricManagedClusterService : ManagedApplicationCmdletBase + { + private const string ByResourceGroup = "ByResourceGroup"; + private const string ByInputObject = "ByInputObject"; + private const string ByResourceId = "ByResourceId"; + + #region Parameters + [Parameter(Mandatory = true, Position = 0, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ParameterSetName = ByResourceGroup, ValueFromPipelineByPropertyName = true, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the name of the application.")] + [ValidateNotNullOrEmpty] + public string ApplicationName { get; set; } + + [Parameter(Mandatory = true, Position = 3, ParameterSetName = ByResourceGroup, + HelpMessage = "Specify the name of the service.")] + [ValidateNotNullOrEmpty] + [Alias("ServiceName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the service.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = ByInputObject, ValueFromPipeline = true, HelpMessage = "The managed service resource.")] + public PSManagedService InputObject { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup)] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject)] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId)] + public SwitchParameter PassThru { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = ByResourceGroup, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByInputObject, HelpMessage = "Remove without prompt.")] + [Parameter(Mandatory = false, ParameterSetName = ByResourceId, HelpMessage = "Remove without prompt.")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + #endregion + + public override void ExecuteCmdlet() + { + switch (ParameterSetName) + { + case ByInputObject: + this.ResourceId = InputObject.Id; + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + case ByResourceGroup: + // intentionally left empty + break; + default: + throw new PSArgumentException("Invalid ParameterSetName"); + } + + var resourceMessage = $"Managed Service '{this.Name}' in application {this.ApplicationName}, cluster name {this.ClusterName}, in resource group '{this.ResourceGroupName}'"; + if (ShouldProcess(target: this.Name, action: $"Remove {resourceMessage}")) + { + ConfirmAction(Force.IsPresent, + $"Do you want to remove the {resourceMessage}?", + "Removing managed service.", + resourceMessage, + () => + { + try + { + var beginRequestResponse = this.SfrpMcClient.Services.BeginDeleteWithHttpMessagesAsync( + this.ResourceGroupName, + this.ClusterName, + this.ApplicationName, + this.Name).GetAwaiter().GetResult(); + + this.PollLongRunningOperation(beginRequestResponse); + if (PassThru) + { + WriteObject(true); + } + } + catch (Exception ex) + { + this.PrintSdkExceptionDetail(ex); + throw; + } + }); + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.serviceProvider, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName); + this.ResourceGroupName = resourceGroup; + this.ClusterName = grandParentResourceName; + this.ApplicationName = parentResourceName; + this.Name = resourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs new file mode 100644 index 000000000000..6a16d761adc9 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs @@ -0,0 +1,518 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ServiceFabric.Common; +using Microsoft.Azure.Commands.ServiceFabric.Models; +using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Management.Internal.Resources; +using Microsoft.Azure.Management.ServiceFabricManagedClusters; +using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.ServiceFabric.Commands +{ + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzurePrefix + Constants.ServiceFabricPrefix + "ManagedClusterService", SupportsShouldProcess = true, DefaultParameterSetName = StatelessByResourceGroup), OutputType(typeof(PSManagedService))] + public class SetAzServiceFabricManagedClusterService : ManagedApplicationCmdletBase + { + private const string StatelessByResourceGroup = "Stateless-ByResourceGroup"; + private const string StatelessByInputObject = "Stateless-ByInputObject"; + private const string StatelessByResourceId = "Stateless-ByResourceId"; + private const string StatefulByResourceGroup = "Stateful-ByResourceGroup"; + private const string StatefulByInputObject = "Stateful-ByInputObject"; + private const string StatefulByResourceId = "Stateful-ByResourceId"; + + + #region Parameters + #region common required params + + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the name of the resource group.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the name of the cluster.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the name of the cluster.")] + [ResourceNameCompleter(Constants.ManagedClustersFullType, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string ClusterName { get; set; } + + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the name of the managed application.")] + [Parameter(Mandatory = true, Position = 2, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the name of the managed application.")] + [ValidateNotNullOrEmpty] + public string ApplicationName { get; set; } + + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the name of the managed service.")] + [Parameter(Mandatory = true, Position = 3, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the name of the managed service.")] + [ValidateNotNullOrEmpty] + [Alias("ServiceName")] + public string Name { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed service.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulByResourceId, ValueFromPipelineByPropertyName = true, + HelpMessage = "Arm ResourceId of the managed service.")] + [ResourceIdCompleter(Constants.ManagedClustersFullType)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = StatelessByInputObject, ValueFromPipeline = true, HelpMessage = "The managed service resource.")] + [Parameter(Mandatory = true, ParameterSetName = StatefulByInputObject, ValueFromPipeline = true, HelpMessage = "The managed service resource.")] + public PSManagedService InputObject { get; set; } + + #endregion + + #region Stateless params + + [Parameter(Mandatory = true, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Use for stateless service")] + [Parameter(Mandatory = true, ParameterSetName = StatelessByResourceId, + HelpMessage = "Use for stateless service")] + [Parameter(Mandatory = true, ParameterSetName = StatelessByInputObject, + HelpMessage = "Use for stateless service")] + public SwitchParameter Stateless { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the instance count for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the instance count for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the instance count for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(-1, int.MaxValue)] + public int InstanceCount { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the minimum instance count for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the minimum instance count for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the minimum instance count for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, int.MaxValue)] + public int MinInstanceCount { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the minimum instance percentage for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the minimum instance percentage for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the minimum instance percentage for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, 100)] + public int MinInstancePercentage { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan InstanceCloseDelayDuration { get; set; } + #endregion + + #region Stateful params + + [Parameter(Mandatory = true, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Use for stateful service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulByResourceId, + HelpMessage = "Use for stateful service")] + [Parameter(Mandatory = true, ParameterSetName = StatefulByInputObject, + HelpMessage = "Use for stateful service")] + public SwitchParameter Stateful { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the target replica set size for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(1, int.MaxValue)] + public int TargetReplicaSetSize { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the min replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the min replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the min replica set size for the managed service")] + [ValidateNotNullOrEmpty] + [ValidateRange(1, int.MaxValue)] + public int MinReplicaSetSize { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the target replica set size for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the target replica set size for the managed service")] + public SwitchParameter HasPersistedState { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the drop source replica on move property for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the drop source replica on move property for the managed service")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the drop source replica on move property for the managed service")] + public SwitchParameter DropSourceReplicaOnMove { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan ReplicaRestartWaitDuration { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan QuorumLossWaitDuration { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan StandByReplicaKeepDuration { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss'")] + [ValidateNotNullOrEmpty] + public TimeSpan ServicePlacementTimeLimit { get; set; } + #endregion + + #region common optional params + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [ValidateNotNullOrEmpty] + public MoveCostEnum DefaultMoveCost { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [ValidateNotNullOrEmpty] + public string PlacementConstraint { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + public PSServiceMetric[] Metric { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + public PSServiceCorrelation[] Correlation { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the placement constraints of the managed service, as a string.")] + [ValidateNotNullOrEmpty] + public string ServiceDnsName { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceGroup, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByResourceId, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatefulByInputObject, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceGroup, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByResourceId, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [Parameter(Mandatory = false, ParameterSetName = StatelessByInputObject, + HelpMessage = "Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster")] + [ValidateNotNullOrEmpty] + public ServicePackageActivationModeEnum ServicePackageActivationMode { get; set; } + + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] + public Hashtable Tags { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background and return a Job to track progress.")] + public SwitchParameter AsJob { get; set; } + + #endregion + #endregion + + + public override void ExecuteCmdlet() + { + try + { + this.SetParams(); + ServiceResource updatedServiceParams = null; + switch (ParameterSetName) + { + case StatefulByResourceGroup: + case StatelessByResourceGroup: + case StatefulByResourceId: + case StatelessByResourceId: + updatedServiceParams = this.GetUpdatedServiceParams(); + break; + case StatefulByInputObject: + case StatelessByInputObject: + updatedServiceParams = this.GetUpdatedServiceParams(this.InputObject); + break; + default: + throw new ArgumentException("Invalid parameter set", ParameterSetName); + } + if (updatedServiceParams != null && ShouldProcess(target: this.Name, action: $"Update managed service name {this.Name}, cluster: {this.ClusterName} in resource group {this.ResourceGroupName}")) + { + var beginRequestResponse = this.SfrpMcClient.Services.BeginCreateOrUpdateWithHttpMessagesAsync(this.ResourceGroupName, this.ClusterName, this.ApplicationName, this.Name, updatedServiceParams) + .GetAwaiter().GetResult(); + + var managedService = this.PollLongRunningOperation(beginRequestResponse); + + WriteObject(new PSManagedService(managedService), false); + } + } + catch (Exception ex) + { + PrintSdkExceptionDetail(ex); + throw; + } + } + + private ServiceResource GetUpdatedServiceParams(ServiceResource inputObject = null) + { + ServiceResource currentService; + if (inputObject == null) + { + currentService = SafeGetResource(() => + this.SfrpMcClient.Services.Get( + this.ResourceGroupName, + this.ClusterName, + this.ApplicationName, + this.Name), + false); + + if (currentService == null) + { + WriteError(new ErrorRecord(new InvalidOperationException($"Managed Service '{this.Name}' does not exist."), + "ResourceDoesNotExist", ErrorCategory.InvalidOperation, null)); + return currentService; + } + } + else + { + currentService = inputObject; + } + + WriteVerbose($"Updating managed service '{this.Name}.'"); + + if (this.IsParameterBound(c => c.Tags)) + { + currentService.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + } + ServiceResourceProperties properties = currentService.Properties; + + if (this.Stateless.ToBool()) + { + StatelessServiceProperties statelessProperties = properties as StatelessServiceProperties; + + if (this.IsParameterBound(c => c.InstanceCount)) + { + statelessProperties.InstanceCount = this.InstanceCount; + } + + if (this.IsParameterBound(c => c.InstanceCloseDelayDuration)) + { + statelessProperties.InstanceCloseDelayDuration = this.InstanceCloseDelayDuration.ToString(); + } + if (this.IsParameterBound(c => c.MinInstancePercentage)) + { + statelessProperties.MinInstancePercentage = this.MinInstancePercentage; + } + if (this.IsParameterBound(c => c.MinInstanceCount)) + { + statelessProperties.MinInstanceCount = this.MinInstanceCount; + } + } + else if (this.Stateful.ToBool()) + { + StatefulServiceProperties statefulProperties = properties as StatefulServiceProperties; + if (this.IsParameterBound(c => c.ServicePlacementTimeLimit)) + { + statefulProperties.ServicePlacementTimeLimit = this.ServicePlacementTimeLimit.ToString(); + } + if (this.IsParameterBound(c => c.StandByReplicaKeepDuration)) + { + statefulProperties.StandByReplicaKeepDuration = this.StandByReplicaKeepDuration.ToString(); + } + if (this.IsParameterBound(c => c.QuorumLossWaitDuration)) + { + statefulProperties.QuorumLossWaitDuration = this.QuorumLossWaitDuration.ToString(); + } + if (this.IsParameterBound(c => c.ReplicaRestartWaitDuration)) + { + statefulProperties.ReplicaRestartWaitDuration = this.ReplicaRestartWaitDuration.ToString(); + } + if (this.IsParameterBound(c => c.DropSourceReplicaOnMove)) + { + statefulProperties.DropSourceReplicaOnMove = this.DropSourceReplicaOnMove.ToBool(); + } + if (this.IsParameterBound(c => c.HasPersistedState)) + { + statefulProperties.HasPersistedState = this.HasPersistedState.ToBool(); + } + if (this.IsParameterBound(c => c.MinReplicaSetSize)) + { + statefulProperties.MinReplicaSetSize = this.MinReplicaSetSize; + } + if (this.IsParameterBound(c => c.TargetReplicaSetSize)) + { + statefulProperties.TargetReplicaSetSize = this.TargetReplicaSetSize; + } + } + SetCommonProperties(properties); + + return currentService; + } + + private void SetCommonProperties(ServiceResourceProperties properties) + { + if (this.IsParameterBound(c => c.ServicePackageActivationMode)) + { + properties.ServicePackageActivationMode = this.ServicePackageActivationMode.ToString(); + } + if (this.IsParameterBound(c => c.DefaultMoveCost)) + { + properties.DefaultMoveCost = this.DefaultMoveCost.ToString(); + } + if (this.IsParameterBound(c => c.PlacementConstraint)) + { + properties.PlacementConstraints = this.PlacementConstraint; + } + if (this.IsParameterBound(c => c.Metric)) + { + properties.ServiceLoadMetrics = this.Metric; + } + if (this.IsParameterBound(c => c.Correlation)) + { + properties.CorrelationScheme = this.Correlation; + } + if (this.IsParameterBound(c => c.ServiceDnsName)) + { + properties.ServiceDnsName = this.ServiceDnsName; + } + } + + private void SetParams() + { + switch (ParameterSetName) + { + case StatefulByResourceGroup: + case StatelessByResourceGroup: + break; + case StatefulByInputObject: + case StatelessByInputObject: + if (string.IsNullOrEmpty(this.InputObject?.Id)) + { + throw new ArgumentException("ResourceId is null."); + } + SetParametersByResourceId(this.InputObject.Id); + break; + case StatefulByResourceId: + case StatelessByResourceId: + SetParametersByResourceId(this.ResourceId); + break; + } + } + + private void SetParametersByResourceId(string resourceId) + { + this.GetParametersByResourceId(resourceId, Constants.serviceProvider, out string resourceGroup, out string resourceName, out string parentResourceName, out string grandParentResourceName); + this.ResourceGroupName = resourceGroup; + this.ClusterName = grandParentResourceName; + this.ApplicationName = parentResourceName; + this.Name = resourceName; + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs new file mode 100644 index 000000000000..3e5ab29e278d --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs @@ -0,0 +1,32 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + + public class PSManagedService : ServiceResource + { + public PSManagedService(ServiceResource service) + : base( + id: service.Id, + name: service.Name, + type: service.Type, + location: service.Location, + properties: service.Properties, + tags: service.Tags) + { + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs new file mode 100644 index 000000000000..9a55c41a4bd3 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + + public class PSServiceCorrelation : ServiceCorrelation + { + public PSServiceCorrelation(ServiceCorrelation serviceCorrelation) + : base( + scheme: serviceCorrelation.Scheme, + serviceName: serviceCorrelation.ServiceName) + { + } + + public PSServiceCorrelation(string scheme, string serviceName) + : base( + scheme: scheme, + serviceName: serviceName) + { + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs new file mode 100644 index 000000000000..5fe9942269f3 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; + + public class PSServiceMetric : ServiceLoadMetric + { + public PSServiceMetric(ServiceLoadMetric loadMetric) + : base( + name: loadMetric.Name, + weight: loadMetric.Weight, + primaryDefaultLoad: loadMetric.PrimaryDefaultLoad, + secondaryDefaultLoad: loadMetric.SecondaryDefaultLoad, + defaultLoad: loadMetric.DefaultLoad) + { + } + + public PSServiceMetric(string name, string weight, int primaryDefaultLoad, int secondaryDefaultLoad) + : base( + name: name, + weight: weight, + primaryDefaultLoad: primaryDefaultLoad, + secondaryDefaultLoad: secondaryDefaultLoad) + { + } + + public PSServiceMetric(string name, string weight, int defaultLoad) + : base( + name: name, + weight: weight, + defaultLoad: defaultLoad) + { + } + } +} diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs new file mode 100644 index 000000000000..bc726408d6c3 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +{ + public enum ServicePackageActivationModeEnum + { + SharedProcess, + ExclusiveProcess + } +} From 11bf1e55b3465d7f986d5a14eb6d496048fd5bbb Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Fri, 5 Mar 2021 15:51:28 -0800 Subject: [PATCH 11/13] add tests for managed app, app type, app type version, service --- .../ScenarioTests/Common.ps1 | 115 + ...ceFabricManagedClustersApplicationTests.cs | 65 + ...eFabricManagedClustersApplicationTests.ps1 | 276 + .../ServiceFabricManagedClustersTests.ps1 | 2 +- .../TestManagedApp.json | 7251 +++++++++++++++++ .../TestManagedAppType.json | 4507 ++++++++++ .../TestManagedAppTypeVersion.json | 5188 ++++++++++++ .../TestManagedService.json | 6796 +++++++++++++++ 8 files changed, 24199 insertions(+), 1 deletion(-) create mode 100644 src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.cs create mode 100644 src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 create mode 100644 src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedApp.json create mode 100644 src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppType.json create mode 100644 src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppTypeVersion.json create mode 100644 src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedService.json diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/Common.ps1 b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/Common.ps1 index 5e13b923d8a1..1e963d7bf40f 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/Common.ps1 +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/Common.ps1 @@ -192,6 +192,37 @@ function WaitForClusterReadyState($clusterName, $resourceGroupName, $timeoutInSe return $false } +function WaitForManagedClusterReadyStateIfRecord($clusterName, $resourceGroupName) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + # Wait for Ready cluster state before updating otherwise update is going to fail + if (-not (WaitForManagedClusterReadyState $clusterName $resourceGroupName)) + { + Assert-True $false 'Cluster is not in Ready state. Can not continue with test.' + } + } +} + +function WaitForManagedClusterReadyState($clusterName, $resourceGroupName, $timeoutInSeconds = 1200) +{ + $timeoutTime = (Get-Date).AddSeconds($timeoutInSeconds) + while (-not $clusterReady -and (Get-Date) -lt $timeoutTime) { + $cluster = (Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName)[0] + if ($cluster.ClusterState -eq "Ready") + { + return $true + break + } + + Write-Host "Cluster state: $($cluster.ClusterState). Waiting for Ready state before continuing." + Start-Sleep -Seconds 15 + } + + Write-Error "WaitForClusterReadyState timed out" + return $false +} + function WaitForAllJob($timeoutInSeconds = 1200) { $timeoutTime = (Get-Date).AddSeconds($timeoutInSeconds) @@ -219,6 +250,53 @@ function WaitForAllJob($timeoutInSeconds = 1200) return $false } +<# +.SYNOPSIS +Asserts if two hashtables with simple key and value types are equal +#> +function Assert-HashtableEqual($h1, $h2) +{ + if($h1.count -ne $h2.count) + { + throw "Hashtable size not equal. Hashtable1: " + $h1.count + " Hashtable2: " + $h2.count + } + + foreach($key in $h1.Keys) + { + if($h1[$key] -ne $h2[$key]) + { + throw "Tag content not equal. Key:$key Tags1:" + $h1[$key] + " Tags2:" + $h2[$key] + } + } +} + +################### +# +# Verify that the actual string ends with the expected suffix +# +# param [string] $expectedSuffix : The expected suffix +# param [string] $actual : The actual string +# param [string] $message : The message to return if the actual string does not end with the suffix +#################### +function Assert-EndsWith +{ + param([string] $expectedSuffix, [string] $actual, [string] $message) + + Assert-NotNull $actual + + if (!$message) + { + $message = "Assertion failed because actual '$actual' does not end with '$expectedSuffix'" + } + + if (-not $actual.EndsWith($expectedSuffix)) + { + throw $message + } + + return $true +} + # Application functions function Get-AppTypeName @@ -249,4 +327,41 @@ function Get-AppPackageV2 function Get-ServiceTypeName { return "CalcServiceType" +} + +# Managed Application functions + +function Get-ManagedAppTypeName +{ + return "VotingType" +} + +function Get-ManagedAppTypeV1Name +{ + return "1.0.0" +} + +function Get-ManagedAppTypeV2Name +{ + return "2.0.0" +} + +function Get-ManagedAppPackageV1 +{ + return "https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg" +} + +function Get-ManagedAppPackageV2 +{ + return "https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.2.0.0.sfpkg" +} + +function Get-ManagedStatelessServiceTypeName +{ + return "VotingWebType" +} + +function Get-ManagedStatefulServiceTypeName +{ + return "VotingDataType" } \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.cs b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.cs new file mode 100644 index 000000000000..d932963b7ca0 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ServiceFabric.Commands; +using Microsoft.Azure.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using Xunit; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests +{ + public class ServiceFabricManagedClustersApplicationTests : RMTestBase + { + public XunitTracingInterceptor _logger; + + public ServiceFabricManagedClustersApplicationTests(ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + + ServiceFabricCommonCmdletBase.WriteVerboseIntervalInSec = 0; + ServiceFabricCmdletBase.RunningTest = true; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedAppType() + { + TestController.NewInstance.RunPsTest(_logger, "Test-ManagedAppType"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedAppTypeVersion() + { + TestController.NewInstance.RunPsTest(_logger, "Test-ManagedAppTypeVersion"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedApp() + { + TestController.NewInstance.RunPsTest(_logger, "Test-ManagedApp"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedService() + { + TestController.NewInstance.RunPsTest(_logger, "Test-ManagedService"); + } + } +} diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 new file mode 100644 index 000000000000..cee816d725f2 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 @@ -0,0 +1,276 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +$appTypeName = Get-ManagedAppTypeName +$v1 = Get-ManagedAppTypeV1Name +$v2 = Get-ManagedAppTypeV2Name +$packageV1 = Get-ManagedAppPackageV1 +$packageV2 = Get-ManagedAppPackageV2 +$statefulServiceTypeName = Get-ManagedStatefulServiceTypeName +$statelessServiceTypeName = Get-ManagedStatelessServiceTypeName + +function Test-ManagedAppType +{ + # Cluster Setup + $resourceGroupName = "sfmcps-rg-" + (getAssetname) + $clusterName = "sfmcps-" + (getAssetname) + $location = "southcentralus" + $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" + $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") + Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" + + $cluster = New-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Location $location ` + -AdminPassword $pass -Sku Standard -ClientCertThumbprint $testClientTp -Verbose + Assert-AreEqual "Succeeded" $cluster.ProvisioningState + Assert-AreEqual "WaitingForNodes" $cluster.ClusterState + + New-AzServiceFabricManagedNodeType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name pnt -InstanceCount 5 -Primary -AsJob + + #wait for nodetypes + WaitForAllJob + + # Wait for clusterState + WaitForManagedClusterReadyStateIfRecord $clusterName $resourceGroupName + + $appTypes = Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName + Assert-Null $appTypes + + $appType = New-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Verbose + Assert-AreEqual "Succeeded" $appType.ProvisioningState + + $appTypeFromGet = Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName + Assert-NotNull $appTypeFromGet + Assert-AreEqual $appType.Id $appTypeFromGet.Id + + $tags = @{"test"="tag"} + + $appType = $appTypeFromGet | Set-AzServiceFabricManagedClusterApplicationType -Tags $tags -Verbose + Assert-AreEqual "Succeeded" $appType.ProvisioningState + + $appTypeFromGet = Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName + Assert-NotNull $appTypeFromGet + Assert-AreEqual $appType.Id $appTypeFromGet.Id + Assert-HashtableEqual $appType.Tags $appTypeFromGet.Tags + + $removeResponse = Remove-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Force -PassThru -Verbose + Assert-True { $removeResponse } + + Assert-ThrowsContains { Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName } "NotFound" +} + +function Test-ManagedAppTypeVersion +{ + # Cluster Setup + $resourceGroupName = "sfmcps-rg-" + (getAssetname) + $clusterName = "sfmcps-" + (getAssetname) + $location = "southcentralus" + $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" + $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") + Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" + + $cluster = New-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Location $location ` + -AdminPassword $pass -Sku Standard -ClientCertThumbprint $testClientTp -Verbose + Assert-AreEqual "Succeeded" $cluster.ProvisioningState + Assert-AreEqual "WaitingForNodes" $cluster.ClusterState + + New-AzServiceFabricManagedNodeType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name pnt -InstanceCount 5 -Primary -AsJob + + #wait for nodetypes + WaitForAllJob + + # Wait for clusterState + WaitForManagedClusterReadyStateIfRecord $clusterName $resourceGroupName + + Assert-ThrowsContains { Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName } "NotFound" + + $appTypeVersion = New-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v1 -PackageUrl $packageV1 -Verbose + Assert-AreEqual "Succeeded" $appTypeVersion.ProvisioningState + + $appTypeVersionFromGet = Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v1 + Assert-NotNull $appTypeVersionFromGet + Assert-AreEqual $appTypeVersion.Id $appTypeVersionFromGet.Id + + $tags = @{"test"="tag"} + + $appTypeVersion = $appTypeVersionFromGet | Set-AzServiceFabricManagedClusterApplicationTypeVersion -Tags $tags -Verbose + Assert-AreEqual "Succeeded" $appTypeVersion.ProvisioningState + + $appTypeVersionFromGet = Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v1 + Assert-NotNull $appTypeVersionFromGet + Assert-AreEqual $appTypeVersion.Id $appTypeVersionFromGet.Id + Assert-HashtableEqual $appTypeVersion.Tags $appTypeVersionFromGet.Tags + + $removeResponse = Remove-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v1 -Force -PassThru -Verbose + Assert-True { $removeResponse } + + $removeResponse = Remove-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Force -PassThru -Verbose + Assert-True { $removeResponse } + + Assert-ThrowsContains { Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v1 } "NotFound" +} + +function Test-ManagedApp +{ + # Cluster Setup + $resourceGroupName = "sfmcps-rg-" + (getAssetname) + $clusterName = "sfmcps-" + (getAssetname) + $location = "southcentralus" + $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" + $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") + Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" + + $cluster = New-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Location $location ` + -AdminPassword $pass -Sku Standard -ClientCertThumbprint $testClientTp -Verbose + Assert-AreEqual "Succeeded" $cluster.ProvisioningState + Assert-AreEqual "WaitingForNodes" $cluster.ClusterState + + New-AzServiceFabricManagedNodeType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name pnt -InstanceCount 5 -Primary -AsJob + + #wait for nodetypes + WaitForAllJob + + # Wait for clusterState + WaitForManagedClusterReadyStateIfRecord $clusterName $resourceGroupName + + $appName = getAssetName "testApp" + $serviceName = getAssetName "testStatelessService" + + $apps = Get-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName + Assert-Null $apps + + $app = New-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationTypeName $appTypeName -ApplicationTypeVersion $v1 -Name $appName -PackageUrl $packageV1 -Verbose + Assert-AreEqual "Succeeded" $app.ProvisioningState + + $appFromGet = Get-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName + Assert-NotNull $appFromGet + Assert-AreEqual $app.Id $appFromGet.Id + + $service = New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Stateless -InstanceCount -1 -ApplicationName $appName -Name $serviceName -Type $statelessServiceTypeName -PartitionSchemeSingleton -Verbose + Assert-AreEqual "Succeeded" $service.Properties.ProvisioningState + + $serviceFromGet = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName + Assert-NotNull $serviceFromGet + Assert-AreEqual $service.Id $serviceFromGet.Id + + $appTypeVersion = New-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v2 -PackageUrl $packageV2 -Verbose + Assert-AreEqual "Succeeded" $appTypeVersion.ProvisioningState + + $app = $appFromGet | Set-AzServiceFabricManagedClusterApplication -ApplicationTypeVersion $v2 -HealthCheckStableDurationSec 0 -HealthCheckWaitDurationSec 0 -HealthCheckRetryTimeoutSec 0 ` + -UpgradeDomainTimeoutSec 5000 -UpgradeTimeoutSec 7000 -FailureAction Rollback -UpgradeReplicaSetCheckTimeoutSec 300 -ForceRestart -Verbose + Assert-AreEqual "Succeeded" $app.ProvisioningState + Assert-EndsWith $v2 $app.Version + Assert-True { $app.UpgradePolicy.ForceRestart } + Assert-AreEqual 300 $app.UpgradePolicy.UpgradeReplicaSetCheckTimeout + Assert-AreEqual "01:56:40" $app.UpgradePolicy.RollingUpgradeMonitoringPolicy.UpgradeTimeout + Assert-AreEqual "01:23:20" $app.UpgradePolicy.RollingUpgradeMonitoringPolicy.UpgradeDomainTimeout + Assert-AreEqual "Rollback" $app.UpgradePolicy.RollingUpgradeMonitoringPolicy.FailureAction + + $removeResponse = Remove-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName -Force -PassThru -Verbose + Assert-True { $removeResponse } + + $removeResponse = Remove-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Force -PassThru -Verbose + Assert-True { $removeResponse } + + Assert-ThrowsContains { Get-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName } "NotFound" +} + +function Test-ManagedService +{ + # Cluster Setup + $resourceGroupName = "sfmcps-rg-" + (getAssetname) + $clusterName = "sfmcps-" + (getAssetname) + $location = "southcentralus" + $testClientTp = "123BDACDCDFB2C7B250192C6078E47D1E1DB119B" + $pass = (ConvertTo-SecureString -AsPlainText -Force "TestPass1234!@#") + Assert-ThrowsContains { Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName } "NotFound" + + $cluster = New-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Location $location ` + -AdminPassword $pass -Sku Standard -ClientCertThumbprint $testClientTp -Verbose + Assert-AreEqual "Succeeded" $cluster.ProvisioningState + Assert-AreEqual "WaitingForNodes" $cluster.ClusterState + + New-AzServiceFabricManagedNodeType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name pnt -InstanceCount 5 -Primary -AsJob + + #wait for nodetypes + WaitForAllJob + + # Wait for clusterState + WaitForManagedClusterReadyStateIfRecord $clusterName $resourceGroupName + + $appName = getAssetName "testApp" + $statelessServiceName = getAssetName "testStatelessService" + $statefulServiceName = getAssetName "testStatefulService" + + $app = New-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationTypeName $appTypeName -ApplicationTypeVersion $v1 -Name $appName -PackageUrl $packageV1 -Verbose + Assert-AreEqual "Succeeded" $app.ProvisioningState + + $services = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName + Assert-Null $services + + $statefulService = New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Stateful -TargetReplicaSetSize 3 ` + -MinReplicaSetSize 2 -HasPersistedState -ApplicationName $appName -Name $statefulServiceName -Type $statefulServiceTypeName -PartitionSchemeUniformInt64 ` + -PartitionCount 1 -LowKey 0 -HighKey 25 -Verbose + Assert-AreEqual "Succeeded" $statefulService.Properties.ProvisioningState + + $statefulServiceFromGet = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $statefulServiceName + Assert-NotNull $statefulServiceFromGet + Assert-AreEqual $statefulService.Id $statefulServiceFromGet.Id + + $statelessService = New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Stateless -InstanceCount -1 ` + -ApplicationName $appName -Name $statelessServiceName -Type $statelessServiceTypeName -PartitionSchemeSingleton -Verbose + Assert-AreEqual "Succeeded" $statelessService.Properties.ProvisioningState + + $statelessServiceFromGet = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $statelessServiceName + Assert-NotNull $statelessServiceFromGet + Assert-AreEqual $statelessService.Id $statelessServiceFromGet.Id + + $replicaRestartWaitDuration = "00:11:00" + $quorumLossWaitDuration = "00:11:00" + $standByReplicaKeepDuration = "00:11:00" + $servicePlacementTimeLimit = "00:11:00" + + $statefulService = $statefulServiceFromGet | Set-AzServiceFabricManagedClusterService -Stateful -ReplicaRestartWaitDuration $replicaRestartWaitDuration -QuorumLossWaitDuration $quorumLossWaitDuration ` + -StandByReplicaKeepDuration $standByReplicaKeepDuration -ServicePlacementTimeLimit $servicePlacementTimeLimit -Verbose + Assert-AreEqual "Succeeded" $statefulService.Properties.ProvisioningState + Assert-AreEqual $replicaRestartWaitDuration $statefulService.Properties.ReplicaRestartWaitDuration + Assert-AreEqual $quorumLossWaitDuration $statefulService.Properties.QuorumLossWaitDuration + Assert-AreEqual $standByReplicaKeepDuration $statefulService.Properties.StandByReplicaKeepDuration + Assert-AreEqual $servicePlacementTimeLimit $statefulService.Properties.ServicePlacementTimeLimit + + $instanceCloseDelayDuration = "00:11:00" + $minInstancePercentage = 20 + $minInstanceCount = 2 + + $statelessService = $statelessServiceFromGet | Set-AzServiceFabricManagedClusterService -Stateless -InstanceCloseDelayDuration $instanceCloseDelayDuration -MinInstancePercentage $minInstancePercentage ` + -MinInstanceCount $minInstanceCount -Verbose + Assert-AreEqual "Succeeded" $statelessService.Properties.ProvisioningState + Assert-AreEqual $instanceCloseDelayDuration $statelessService.Properties.InstanceCloseDelayDuration + Assert-AreEqual $minInstancePercentage $statelessService.Properties.MinInstancePercentage + Assert-AreEqual $minInstanceCount $statelessService.Properties.MinInstanceCount + + $removeStatefulServiceResponse = Remove-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $statefulServiceName -Force -PassThru -Verbose + Assert-True { $removeStatefulServiceResponse } + + $removeStatelessServiceResponse = Remove-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $statelessServiceName -Force -PassThru -Verbose + Assert-True { $removeStatelessServiceResponse } + + $removeAppResponse = Remove-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName -Force -PassThru -Verbose + Assert-True { $removeAppResponse } + + $removeAppTypeResponse = Remove-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Force -PassThru -Verbose + Assert-True { $removeAppTypeResponse } + + Assert-ThrowsContains { Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $statefulServiceName } "NotFound" + Assert-ThrowsContains { Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $statelessServiceName } "NotFound" +} \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 index ef3f1a2d7473..bdd6422ebe14 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersTests.ps1 @@ -29,7 +29,7 @@ function Test-CreateBasicCluster $pnt = New-AzServiceFabricManagedNodeType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name pnt -InstanceCount 5 -Primary # shouldn't be allowed to remove the only primary node type in the cluster - Assert-ThrowsContains { $pnt | Remove-AzServiceFabricManagedNodeType } "BadRequest" + Assert-ThrowsContains { $pnt | Remove-AzServiceFabricManagedNodeType } "InvalidParameter" $cluster = Get-AzServiceFabricManagedCluster -ResourceGroupName $resourceGroupName -Name $clusterName Assert-AreEqual "Deploying" $cluster.ClusterState diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedApp.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedApp.json new file mode 100644 index 000000000000..201f5509ec33 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedApp.json @@ -0,0 +1,7251 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c72f953-4780-4e9f-980e-7685b8f598d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b03a0672-cd53-4778-888e-8686d289a56a" + ], + "x-ms-correlation-request-id": [ + "b03a0672-cd53-4778-888e-8686d289a56a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203854Z:b03a0672-cd53-4778-888e-8686d289a56a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 20:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps4879' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0e5eaf2a-7d29-491b-9eaa-cbaf4b56e56a" + ], + "x-ms-correlation-request-id": [ + "0e5eaf2a-7d29-491b-9eaa-cbaf4b56e56a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203854Z:0e5eaf2a-7d29-491b-9eaa-cbaf4b56e56a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 20:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps4879' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "1da1852d-2088-4a16-acdd-b1958b573386" + ], + "x-ms-correlation-request-id": [ + "1da1852d-2088-4a16-acdd-b1958b573386" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204159Z:1da1852d-2088-4a16-acdd-b1958b573386" + ], + "Date": [ + "Fri, 05 Mar 2021 20:41:59 GMT" + ], + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d771477-feca-493e-832b-b94eed16693c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "0cbed19e-3bbe-4f67-8b65-2fcaf9ad0140" + ], + "x-ms-correlation-request-id": [ + "0cbed19e-3bbe-4f67-8b65-2fcaf9ad0140" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204930Z:0cbed19e-3bbe-4f67-8b65-2fcaf9ad0140" + ], + "Date": [ + "Fri, 05 Mar 2021 20:49:30 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35dd6330-0594-488f-930e-4c550ce8417c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "0fc65cbd-dca4-476e-8086-20da121456cc" + ], + "x-ms-correlation-request-id": [ + "0fc65cbd-dca4-476e-8086-20da121456cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204945Z:0fc65cbd-dca4-476e-8086-20da121456cc" + ], + "Date": [ + "Fri, 05 Mar 2021 20:49:45 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c13de5b6-3096-4cf5-a1c4-11c755c7b697" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "f17aa85d-2cc5-4e85-a2c6-63bd0a516bb7" + ], + "x-ms-correlation-request-id": [ + "f17aa85d-2cc5-4e85-a2c6-63bd0a516bb7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205000Z:f17aa85d-2cc5-4e85-a2c6-63bd0a516bb7" + ], + "Date": [ + "Fri, 05 Mar 2021 20:50:00 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2c01c83-ed6b-42d6-8743-18cbcc361781" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "7489e279-ac72-43fc-8ec8-9a0889822e51" + ], + "x-ms-correlation-request-id": [ + "7489e279-ac72-43fc-8ec8-9a0889822e51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205015Z:7489e279-ac72-43fc-8ec8-9a0889822e51" + ], + "Date": [ + "Fri, 05 Mar 2021 20:50:15 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea93f94b-f383-4869-88e1-d24a5420f655" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "a558178b-2e03-4e70-a490-eddcd1fab38a" + ], + "x-ms-correlation-request-id": [ + "a558178b-2e03-4e70-a490-eddcd1fab38a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205030Z:a558178b-2e03-4e70-a490-eddcd1fab38a" + ], + "Date": [ + "Fri, 05 Mar 2021 20:50:30 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6571a07f-f2cc-42ca-985d-2711852073b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d403426e-81d6-4615-853d-d30d602fbd79" + ], + "x-ms-correlation-request-id": [ + "d403426e-81d6-4615-853d-d30d602fbd79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205045Z:d403426e-81d6-4615-853d-d30d602fbd79" + ], + "Date": [ + "Fri, 05 Mar 2021 20:50:45 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3a2e0fe-5d6d-4e9f-a36b-84470179962e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "945f85a3-a515-481a-8477-2285d71b985e" + ], + "x-ms-correlation-request-id": [ + "945f85a3-a515-481a-8477-2285d71b985e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205101Z:945f85a3-a515-481a-8477-2285d71b985e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:51:01 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8cf9e948-64e1-495e-9493-c800f6a298de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "f6987c70-e29b-4e84-a7c8-558e0b090888" + ], + "x-ms-correlation-request-id": [ + "f6987c70-e29b-4e84-a7c8-558e0b090888" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205116Z:f6987c70-e29b-4e84-a7c8-558e0b090888" + ], + "Date": [ + "Fri, 05 Mar 2021 20:51:16 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42910af7-5194-4f7d-a0f3-10ea69ffda6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "76a33356-f589-47b1-be59-da64fd64a00a" + ], + "x-ms-correlation-request-id": [ + "76a33356-f589-47b1-be59-da64fd64a00a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205131Z:76a33356-f589-47b1-be59-da64fd64a00a" + ], + "Date": [ + "Fri, 05 Mar 2021 20:51:31 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc61886e-28e1-4bf7-a74b-f584238a8dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "39efc105-dfe1-44cb-a438-26d9c567ad56" + ], + "x-ms-correlation-request-id": [ + "39efc105-dfe1-44cb-a438-26d9c567ad56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205146Z:39efc105-dfe1-44cb-a438-26d9c567ad56" + ], + "Date": [ + "Fri, 05 Mar 2021 20:51:46 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "530351e9-de78-4db1-80e0-d29bd79a7482" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "e293d005-5f09-4259-b2d9-7a33116e34be" + ], + "x-ms-correlation-request-id": [ + "e293d005-5f09-4259-b2d9-7a33116e34be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205201Z:e293d005-5f09-4259-b2d9-7a33116e34be" + ], + "Date": [ + "Fri, 05 Mar 2021 20:52:01 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12c04ff1-8323-4db7-8b44-b215e6314fda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "da970e7f-d067-4847-9169-01f7c263cdb9" + ], + "x-ms-correlation-request-id": [ + "da970e7f-d067-4847-9169-01f7c263cdb9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205216Z:da970e7f-d067-4847-9169-01f7c263cdb9" + ], + "Date": [ + "Fri, 05 Mar 2021 20:52:15 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "326774af-1fc6-40ca-a251-d5ab2444b59d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-request-id": [ + "dcb2a489-9dab-4dbc-b619-d74c200be39f" + ], + "x-ms-correlation-request-id": [ + "dcb2a489-9dab-4dbc-b619-d74c200be39f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205231Z:dcb2a489-9dab-4dbc-b619-d74c200be39f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:52:30 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f27c851-de73-47e5-886a-f75b622fc96c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "f5392ef1-ce50-4279-a709-11cfe9f8fa62" + ], + "x-ms-correlation-request-id": [ + "f5392ef1-ce50-4279-a709-11cfe9f8fa62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205246Z:f5392ef1-ce50-4279-a709-11cfe9f8fa62" + ], + "Date": [ + "Fri, 05 Mar 2021 20:52:45 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2cc9a634-cea3-4ab6-b598-7d5a75bad1f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "6c3b56ff-4d36-4fbc-9ad7-45bb21bef93f" + ], + "x-ms-correlation-request-id": [ + "6c3b56ff-4d36-4fbc-9ad7-45bb21bef93f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205301Z:6c3b56ff-4d36-4fbc-9ad7-45bb21bef93f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:53:01 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b3f89d2-618f-4af1-aeb4-f7e0b0bd2900" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "1a63061a-b6c1-4a52-9fee-d72dc6356ebf" + ], + "x-ms-correlation-request-id": [ + "1a63061a-b6c1-4a52-9fee-d72dc6356ebf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205316Z:1a63061a-b6c1-4a52-9fee-d72dc6356ebf" + ], + "Date": [ + "Fri, 05 Mar 2021 20:53:16 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e55bea1-7f50-45a2-9a9d-1a58209bd9a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "cc3d24e4-bfad-4c43-99df-4a93e188988f" + ], + "x-ms-correlation-request-id": [ + "cc3d24e4-bfad-4c43-99df-4a93e188988f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205332Z:cc3d24e4-bfad-4c43-99df-4a93e188988f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:53:31 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8c6eaaa-600e-45e3-bfc5-8319d32545a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "ede06f01-7379-4254-b27d-c358f7a3ba49" + ], + "x-ms-correlation-request-id": [ + "ede06f01-7379-4254-b27d-c358f7a3ba49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205347Z:ede06f01-7379-4254-b27d-c358f7a3ba49" + ], + "Date": [ + "Fri, 05 Mar 2021 20:53:46 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a18cc778-4361-4be5-9abc-f5d67baa4d53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "c1f7bbe7-1513-4877-84f8-a9df9fa2e054" + ], + "x-ms-correlation-request-id": [ + "c1f7bbe7-1513-4877-84f8-a9df9fa2e054" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205402Z:c1f7bbe7-1513-4877-84f8-a9df9fa2e054" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:01 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ab92e3c-e01f-4155-9116-5fefb809a0ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "1ae51152-a958-463d-bdaf-cb2615ecb37f" + ], + "x-ms-correlation-request-id": [ + "1ae51152-a958-463d-bdaf-cb2615ecb37f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205417Z:1ae51152-a958-463d-bdaf-cb2615ecb37f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:16 GMT" + ], + "Content-Length": [ + "1138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-request-id": [ + "9cbb8b64-a40d-4499-83f7-37022638f5eb" + ], + "x-ms-correlation-request-id": [ + "9cbb8b64-a40d-4499-83f7-37022638f5eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205417Z:9cbb8b64-a40d-4499-83f7-37022638f5eb" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:16 GMT" + ], + "Content-Length": [ + "1138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16fc2b88-e621-42d6-a1fe-458a5dadea07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "996e861a-34fa-4ba3-a081-ffe7aed4e1f3" + ], + "x-ms-correlation-request-id": [ + "996e861a-34fa-4ba3-a081-ffe7aed4e1f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205620Z:996e861a-34fa-4ba3-a081-ffe7aed4e1f3" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:19 GMT" + ], + "Content-Length": [ + "1138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "3f4f81ea-edea-4c6c-aecd-287caa0b178a" + ], + "x-ms-correlation-request-id": [ + "3f4f81ea-edea-4c6c-aecd-287caa0b178a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205641Z:3f4f81ea-edea-4c6c-aecd-287caa0b178a" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:40 GMT" + ], + "Content-Length": [ + "1138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"fqdn\": \"sfmcps-ps110.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.92.42\",\r\n \"clusterCertificateThumbprints\": [\r\n \"28C319FDA9CEBFEAC46B51F5D74D112FF2413ADF\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczQ4Nzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "36def668-4132-426e-a6c0-e165d85cb1a5" + ], + "x-ms-correlation-request-id": [ + "36def668-4132-426e-a6c0-e165d85cb1a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203854Z:36def668-4132-426e-a6c0-e165d85cb1a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 20:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps4879' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczQ4Nzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5da70517-d442-4c9e-8fda-96c6c7c3d31c" + ], + "x-ms-correlation-request-id": [ + "5da70517-d442-4c9e-8fda-96c6c7c3d31c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203855Z:5da70517-d442-4c9e-8fda-96c6c7c3d31c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 20:38:55 GMT" + ], + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879\",\r\n \"name\": \"sfmcps-rg-ps4879\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4e687419-7033-476e-b712-cf0326bdf228" + ], + "x-ms-correlation-request-id": [ + "4e687419-7033-476e-b712-cf0326bdf228" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203858Z:4e687419-7033-476e-b712-cf0326bdf228" + ], + "Date": [ + "Fri, 05 Mar 2021 20:38:58 GMT" + ], + "Content-Length": [ + "927" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps110\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"de88b199-1d06-4bcc-8374-924bc276269b\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps110\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "481d1a58-80fb-48e9-9a26-b85bccd18eff" + ], + "x-ms-correlation-request-id": [ + "481d1a58-80fb-48e9-9a26-b85bccd18eff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203919Z:481d1a58-80fb-48e9-9a26-b85bccd18eff" + ], + "Date": [ + "Fri, 05 Mar 2021 20:39:18 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "aecf2327-30ac-46b6-bf22-f25bbd8666c5" + ], + "x-ms-correlation-request-id": [ + "aecf2327-30ac-46b6-bf22-f25bbd8666c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203939Z:aecf2327-30ac-46b6-bf22-f25bbd8666c5" + ], + "Date": [ + "Fri, 05 Mar 2021 20:39:38 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "76951c1c-2f47-4791-894a-27fbbdfc0e83" + ], + "x-ms-correlation-request-id": [ + "76951c1c-2f47-4791-894a-27fbbdfc0e83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T203959Z:76951c1c-2f47-4791-894a-27fbbdfc0e83" + ], + "Date": [ + "Fri, 05 Mar 2021 20:39:58 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "77d1a297-8c78-4587-a091-7a631332eef0" + ], + "x-ms-correlation-request-id": [ + "77d1a297-8c78-4587-a091-7a631332eef0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204019Z:77d1a297-8c78-4587-a091-7a631332eef0" + ], + "Date": [ + "Fri, 05 Mar 2021 20:40:18 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "70c70461-8e5e-4add-a8c6-f273faf94a5d" + ], + "x-ms-correlation-request-id": [ + "70c70461-8e5e-4add-a8c6-f273faf94a5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204039Z:70c70461-8e5e-4add-a8c6-f273faf94a5d" + ], + "Date": [ + "Fri, 05 Mar 2021 20:40:38 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "2520c615-fcc6-4d04-8052-2a401971d2ba" + ], + "x-ms-correlation-request-id": [ + "2520c615-fcc6-4d04-8052-2a401971d2ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204059Z:2520c615-fcc6-4d04-8052-2a401971d2ba" + ], + "Date": [ + "Fri, 05 Mar 2021 20:40:59 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "9bc41383-ace3-4e65-a6f9-291f21e071c4" + ], + "x-ms-correlation-request-id": [ + "9bc41383-ace3-4e65-a6f9-291f21e071c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204119Z:9bc41383-ace3-4e65-a6f9-291f21e071c4" + ], + "Date": [ + "Fri, 05 Mar 2021 20:41:19 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "ae29bf02-f234-40b9-9d76-a26672124661" + ], + "x-ms-correlation-request-id": [ + "ae29bf02-f234-40b9-9d76-a26672124661" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204139Z:ae29bf02-f234-40b9-9d76-a26672124661" + ], + "Date": [ + "Fri, 05 Mar 2021 20:41:39 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/5edb0002-7b1c-4eac-b9e0-5d55599de6ad?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzVlZGIwMDAyLTdiMWMtNGVhYy1iOWUwLTVkNTU1OTlkZTZhZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58166a3c-6f6f-49c7-a748-a9224818d6d7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "97a6de8d-2330-4bfd-82e2-967371517b98" + ], + "x-ms-correlation-request-id": [ + "97a6de8d-2330-4bfd-82e2-967371517b98" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204159Z:97a6de8d-2330-4bfd-82e2-967371517b98" + ], + "Date": [ + "Fri, 05 Mar 2021 20:41:59 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5edb0002-7b1c-4eac-b9e0-5d55599de6ad\",\r\n \"startTime\": \"2021-03-05T20:38:58.1461163Z\",\r\n \"endTime\": \"2021-03-05T20:41:56.0351822Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTAvbm9kZVR5cGVzL3BudD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67d7c6ba-aa9f-4777-b812-2797903dbbc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "4180fd84-2a62-4a25-9aaf-cc24c28ecc5b" + ], + "x-ms-correlation-request-id": [ + "4180fd84-2a62-4a25-9aaf-cc24c28ecc5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204200Z:4180fd84-2a62-4a25-9aaf-cc24c28ecc5b" + ], + "Date": [ + "Fri, 05 Mar 2021 20:41:59 GMT" + ], + "Content-Length": [ + "139" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData de88b199-1d06-4bcc-8374-924bc276269b_pnt could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTAvbm9kZVR5cGVzL3BudD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "e1d48862-f8a1-47a8-91fd-9ecc0e2e1d3c" + ], + "x-ms-correlation-request-id": [ + "e1d48862-f8a1-47a8-91fd-9ecc0e2e1d3c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204922Z:e1d48862-f8a1-47a8-91fd-9ecc0e2e1d3c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:49:22 GMT" + ], + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHMxMTAvbm9kZVR5cGVzL3BudD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d09cf87c-3a41-430f-97aa-1f0430a2d17f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "299" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "cb8d7770-2883-464d-80e7-1195b268a1f1" + ], + "x-ms-correlation-request-id": [ + "cb8d7770-2883-464d-80e7-1195b268a1f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204200Z:cb8d7770-2883-464d-80e7-1195b268a1f1" + ], + "Date": [ + "Fri, 05 Mar 2021 20:41:59 GMT" + ], + "Content-Length": [ + "695" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "94179d9a-e281-4c26-b187-135adada2dd0" + ], + "x-ms-correlation-request-id": [ + "94179d9a-e281-4c26-b187-135adada2dd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204220Z:94179d9a-e281-4c26-b187-135adada2dd0" + ], + "Date": [ + "Fri, 05 Mar 2021 20:42:19 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "f5302b20-ba9d-40cf-9d8b-7004daf0368e" + ], + "x-ms-correlation-request-id": [ + "f5302b20-ba9d-40cf-9d8b-7004daf0368e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204240Z:f5302b20-ba9d-40cf-9d8b-7004daf0368e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:42:40 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "5e749f10-2044-49f0-ab87-e0e4d39c3428" + ], + "x-ms-correlation-request-id": [ + "5e749f10-2044-49f0-ab87-e0e4d39c3428" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204300Z:5e749f10-2044-49f0-ab87-e0e4d39c3428" + ], + "Date": [ + "Fri, 05 Mar 2021 20:43:00 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "21fce22e-7856-4bfa-a375-90bb307528f9" + ], + "x-ms-correlation-request-id": [ + "21fce22e-7856-4bfa-a375-90bb307528f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204320Z:21fce22e-7856-4bfa-a375-90bb307528f9" + ], + "Date": [ + "Fri, 05 Mar 2021 20:43:20 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "2cfab005-e810-4e62-8ead-77e0a5ce59fb" + ], + "x-ms-correlation-request-id": [ + "2cfab005-e810-4e62-8ead-77e0a5ce59fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204340Z:2cfab005-e810-4e62-8ead-77e0a5ce59fb" + ], + "Date": [ + "Fri, 05 Mar 2021 20:43:40 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "5f6e62b9-1f26-47a7-952d-0a20f5f56e16" + ], + "x-ms-correlation-request-id": [ + "5f6e62b9-1f26-47a7-952d-0a20f5f56e16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204401Z:5f6e62b9-1f26-47a7-952d-0a20f5f56e16" + ], + "Date": [ + "Fri, 05 Mar 2021 20:44:00 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "11c111a2-1907-4af2-acb1-3473914aa878" + ], + "x-ms-correlation-request-id": [ + "11c111a2-1907-4af2-acb1-3473914aa878" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204421Z:11c111a2-1907-4af2-acb1-3473914aa878" + ], + "Date": [ + "Fri, 05 Mar 2021 20:44:20 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "cf5776d5-6a9b-46c1-993c-1265183a64e7" + ], + "x-ms-correlation-request-id": [ + "cf5776d5-6a9b-46c1-993c-1265183a64e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204441Z:cf5776d5-6a9b-46c1-993c-1265183a64e7" + ], + "Date": [ + "Fri, 05 Mar 2021 20:44:40 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "80e8476b-7653-42eb-abba-36baab9dfb77" + ], + "x-ms-correlation-request-id": [ + "80e8476b-7653-42eb-abba-36baab9dfb77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204501Z:80e8476b-7653-42eb-abba-36baab9dfb77" + ], + "Date": [ + "Fri, 05 Mar 2021 20:45:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "de8f4b0f-0f78-4cd6-b64b-c1af07130088" + ], + "x-ms-correlation-request-id": [ + "de8f4b0f-0f78-4cd6-b64b-c1af07130088" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204521Z:de8f4b0f-0f78-4cd6-b64b-c1af07130088" + ], + "Date": [ + "Fri, 05 Mar 2021 20:45:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "0ab587ce-0c8f-4541-be28-c733e3872991" + ], + "x-ms-correlation-request-id": [ + "0ab587ce-0c8f-4541-be28-c733e3872991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204541Z:0ab587ce-0c8f-4541-be28-c733e3872991" + ], + "Date": [ + "Fri, 05 Mar 2021 20:45:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "a975e46d-6cdb-43fe-9eb5-935b6e281994" + ], + "x-ms-correlation-request-id": [ + "a975e46d-6cdb-43fe-9eb5-935b6e281994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204601Z:a975e46d-6cdb-43fe-9eb5-935b6e281994" + ], + "Date": [ + "Fri, 05 Mar 2021 20:46:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "2b4e0304-6961-409f-bb5e-38c498f7c050" + ], + "x-ms-correlation-request-id": [ + "2b4e0304-6961-409f-bb5e-38c498f7c050" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204621Z:2b4e0304-6961-409f-bb5e-38c498f7c050" + ], + "Date": [ + "Fri, 05 Mar 2021 20:46:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "18e701f3-2158-4317-a497-7adf1e98314b" + ], + "x-ms-correlation-request-id": [ + "18e701f3-2158-4317-a497-7adf1e98314b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204641Z:18e701f3-2158-4317-a497-7adf1e98314b" + ], + "Date": [ + "Fri, 05 Mar 2021 20:46:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "edfb3795-d70f-496d-80db-292fa113e00e" + ], + "x-ms-correlation-request-id": [ + "edfb3795-d70f-496d-80db-292fa113e00e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204701Z:edfb3795-d70f-496d-80db-292fa113e00e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:47:00 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "a0dbb802-8f8c-45a7-8b14-437575ee5192" + ], + "x-ms-correlation-request-id": [ + "a0dbb802-8f8c-45a7-8b14-437575ee5192" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204722Z:a0dbb802-8f8c-45a7-8b14-437575ee5192" + ], + "Date": [ + "Fri, 05 Mar 2021 20:47:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "6dd69dc3-42fb-4ec5-9f4e-86940876335c" + ], + "x-ms-correlation-request-id": [ + "6dd69dc3-42fb-4ec5-9f4e-86940876335c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204742Z:6dd69dc3-42fb-4ec5-9f4e-86940876335c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:47:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "a81dc25b-0300-4a03-9afe-15ecb1babd0b" + ], + "x-ms-correlation-request-id": [ + "a81dc25b-0300-4a03-9afe-15ecb1babd0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204802Z:a81dc25b-0300-4a03-9afe-15ecb1babd0b" + ], + "Date": [ + "Fri, 05 Mar 2021 20:48:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "2bc34991-9006-4d6a-bc43-ccb39bedde9a" + ], + "x-ms-correlation-request-id": [ + "2bc34991-9006-4d6a-bc43-ccb39bedde9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204822Z:2bc34991-9006-4d6a-bc43-ccb39bedde9a" + ], + "Date": [ + "Fri, 05 Mar 2021 20:48:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "3c26a302-82af-4a90-9a62-757267a38a74" + ], + "x-ms-correlation-request-id": [ + "3c26a302-82af-4a90-9a62-757267a38a74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204842Z:3c26a302-82af-4a90-9a62-757267a38a74" + ], + "Date": [ + "Fri, 05 Mar 2021 20:48:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "e1b5b18c-7328-4190-a171-8b09f632e4e9" + ], + "x-ms-correlation-request-id": [ + "e1b5b18c-7328-4190-a171-8b09f632e4e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204902Z:e1b5b18c-7328-4190-a171-8b09f632e4e9" + ], + "Date": [ + "Fri, 05 Mar 2021 20:49:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/73d60002-2917-4e98-b931-08a0476df58e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzczZDYwMDAyLTI5MTctNGU5OC1iOTMxLTA4YTA0NzZkZjU4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "9971500d-3b13-4eb8-9171-923a9f0fdd62" + ], + "x-ms-correlation-request-id": [ + "9971500d-3b13-4eb8-9171-923a9f0fdd62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T204922Z:9971500d-3b13-4eb8-9171-923a9f0fdd62" + ], + "Date": [ + "Fri, 05 Mar 2021 20:49:22 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"73d60002-2917-4e98-b931-08a0476df58e\",\r\n \"startTime\": \"2021-03-05T20:42:00.3952749Z\",\r\n \"endTime\": \"2021-03-05T20:49:03.6964737Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f094ab44-089b-4f04-bc0f-2c421eb3c003" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "f447e1bc-02e7-494a-a671-88891eea5a3c" + ], + "x-ms-correlation-request-id": [ + "f447e1bc-02e7-494a-a671-88891eea5a3c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205417Z:f447e1bc-02e7-494a-a671-88891eea5a3c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:16 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "0340e4fe-8a46-4465-9e01-0e06c69b4280" + ], + "x-ms-correlation-request-id": [ + "0340e4fe-8a46-4465-9e01-0e06c69b4280" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205417Z:0340e4fe-8a46-4465-9e01-0e06c69b4280" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:17 GMT" + ], + "Content-Length": [ + "153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeData de88b199-1d06-4bcc-8374-924bc276269b&votingtype could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "26e7dbbf-bc2f-4e20-b685-39925c94aef0" + ], + "x-ms-correlation-request-id": [ + "26e7dbbf-bc2f-4e20-b685-39925c94aef0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205641Z:26e7dbbf-bc2f-4e20-b685-39925c94aef0" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:40 GMT" + ], + "Content-Length": [ + "721" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:54:17.9335309-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:54:17.9335309-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "7befac1e-6b0e-45e7-a3da-0aa909db6b30" + ], + "x-ms-correlation-request-id": [ + "7befac1e-6b0e-45e7-a3da-0aa909db6b30" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205418Z:7befac1e-6b0e-45e7-a3da-0aa909db6b30" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:17 GMT" + ], + "Content-Length": [ + "721" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:54:17.9335309-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:54:17.9335309-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-request-id": [ + "97bf5efa-c22e-4adc-bd03-2f0f42c5abd6" + ], + "x-ms-correlation-request-id": [ + "97bf5efa-c22e-4adc-bd03-2f0f42c5abd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205418Z:97bf5efa-c22e-4adc-bd03-2f0f42c5abd6" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:17 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeVersionData de88b199-1d06-4bcc-8374-924bc276269b&votingtype&1.0.0 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "c7bfafc4-0b69-4fde-923e-cae66831622c" + ], + "x-ms-correlation-request-id": [ + "c7bfafc4-0b69-4fde-923e-cae66831622c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205559Z:c7bfafc4-0b69-4fde-923e-cae66831622c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:55:58 GMT" + ], + "Content-Length": [ + "852" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:54:18.4735539-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:54:18.4735539-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "40a12b47-cbc9-4fcf-b690-6791d1434416" + ], + "x-ms-correlation-request-id": [ + "40a12b47-cbc9-4fcf-b690-6791d1434416" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205418Z:40a12b47-cbc9-4fcf-b690-6791d1434416" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:18 GMT" + ], + "Content-Length": [ + "851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:54:18.4735539-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:54:18.4735539-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q3NDIwMDAyLWY4ZjAtNDk3My05MDk3LWRiMmNiYzQxODNiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "b7f219ba-ced5-4f57-ab87-8bb9e2ebb3f6" + ], + "x-ms-correlation-request-id": [ + "b7f219ba-ced5-4f57-ab87-8bb9e2ebb3f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205438Z:b7f219ba-ced5-4f57-ab87-8bb9e2ebb3f6" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:37 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d7420002-f8f0-4973-9097-db2cbc4183b8\",\r\n \"startTime\": \"2021-03-05T20:54:18.5275694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q3NDIwMDAyLWY4ZjAtNDk3My05MDk3LWRiMmNiYzQxODNiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "4810968e-1d90-4727-8465-f72d425ae6f9" + ], + "x-ms-correlation-request-id": [ + "4810968e-1d90-4727-8465-f72d425ae6f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205458Z:4810968e-1d90-4727-8465-f72d425ae6f9" + ], + "Date": [ + "Fri, 05 Mar 2021 20:54:58 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d7420002-f8f0-4973-9097-db2cbc4183b8\",\r\n \"startTime\": \"2021-03-05T20:54:18.5275694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q3NDIwMDAyLWY4ZjAtNDk3My05MDk3LWRiMmNiYzQxODNiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "8185c178-b96e-483b-afdc-0e64e203f8e6" + ], + "x-ms-correlation-request-id": [ + "8185c178-b96e-483b-afdc-0e64e203f8e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205519Z:8185c178-b96e-483b-afdc-0e64e203f8e6" + ], + "Date": [ + "Fri, 05 Mar 2021 20:55:18 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d7420002-f8f0-4973-9097-db2cbc4183b8\",\r\n \"startTime\": \"2021-03-05T20:54:18.5275694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q3NDIwMDAyLWY4ZjAtNDk3My05MDk3LWRiMmNiYzQxODNiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "e8e4a73e-bb51-494f-9dce-8c66a2442d45" + ], + "x-ms-correlation-request-id": [ + "e8e4a73e-bb51-494f-9dce-8c66a2442d45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205539Z:e8e4a73e-bb51-494f-9dce-8c66a2442d45" + ], + "Date": [ + "Fri, 05 Mar 2021 20:55:38 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d7420002-f8f0-4973-9097-db2cbc4183b8\",\r\n \"startTime\": \"2021-03-05T20:54:18.5275694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d7420002-f8f0-4973-9097-db2cbc4183b8?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2Q3NDIwMDAyLWY4ZjAtNDk3My05MDk3LWRiMmNiYzQxODNiOD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "98e89cbb-379a-4150-884a-b11c791d8105" + ], + "x-ms-correlation-request-id": [ + "98e89cbb-379a-4150-884a-b11c791d8105" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205559Z:98e89cbb-379a-4150-884a-b11c791d8105" + ], + "Date": [ + "Fri, 05 Mar 2021 20:55:58 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d7420002-f8f0-4973-9097-db2cbc4183b8\",\r\n \"startTime\": \"2021-03-05T20:54:18.5275694Z\",\r\n \"endTime\": \"2021-03-05T20:55:39.6044253Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "2e4ba0ab-5ecc-4e8c-b1f6-b087f52b8495" + ], + "x-ms-correlation-request-id": [ + "2e4ba0ab-5ecc-4e8c-b1f6-b087f52b8495" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205559Z:2e4ba0ab-5ecc-4e8c-b1f6-b087f52b8495" + ], + "Date": [ + "Fri, 05 Mar 2021 20:55:59 GMT" + ], + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationData de88b199-1d06-4bcc-8374-924bc276269b&testapp1182 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "704eb356-895d-4860-8252-0b65cb69112f" + ], + "x-ms-correlation-request-id": [ + "704eb356-895d-4860-8252-0b65cb69112f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205620Z:704eb356-895d-4860-8252-0b65cb69112f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:19 GMT" + ], + "Content-Length": [ + "924" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp1182\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:55:59.9235825-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:55:59.9235825-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bee2bdf-07a0-4d9b-bd93-a8b54e91803c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "dfdeb790-39b2-4d7d-b887-086a553fbba4" + ], + "x-ms-correlation-request-id": [ + "dfdeb790-39b2-4d7d-b887-086a553fbba4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205620Z:dfdeb790-39b2-4d7d-b887-086a553fbba4" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:19 GMT" + ], + "Content-Length": [ + "924" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp1182\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:55:59.9235825-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:55:59.9235825-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-request-id": [ + "6febaf19-3ec1-4129-82a7-78ade858dc3d" + ], + "x-ms-correlation-request-id": [ + "6febaf19-3ec1-4129-82a7-78ade858dc3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210345Z:6febaf19-3ec1-4129-82a7-78ade858dc3d" + ], + "Date": [ + "Fri, 05 Mar 2021 21:03:44 GMT" + ], + "Content-Length": [ + "1748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp1182\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:58:23.1195993-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:58:23.1195993-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n },\r\n \"serviceTypeHealthPolicyMap\": {}\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\": \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": 300,\r\n \"forceRestart\": true\r\n },\r\n \"version\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8133171e-186f-4550-9fa4-0356f7447550" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-request-id": [ + "8c4c4ca9-dece-4661-8acd-c2b4bf3b7704" + ], + "x-ms-correlation-request-id": [ + "8c4c4ca9-dece-4661-8acd-c2b4bf3b7704" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210426Z:8c4c4ca9-dece-4661-8acd-c2b4bf3b7704" + ], + "Date": [ + "Fri, 05 Mar 2021 21:04:25 GMT" + ], + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationData de88b199-1d06-4bcc-8374-924bc276269b&testapp1182 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "269" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/48d10002-e3ff-4d7e-86a8-37f7bf1382d3?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/48d10002-e3ff-4d7e-86a8-37f7bf1382d3?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "7476e8c1-c0e0-41d9-a907-30522280feea" + ], + "x-ms-correlation-request-id": [ + "7476e8c1-c0e0-41d9-a907-30522280feea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205600Z:7476e8c1-c0e0-41d9-a907-30522280feea" + ], + "Date": [ + "Fri, 05 Mar 2021 20:55:59 GMT" + ], + "Content-Length": [ + "923" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp1182\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:55:59.9235825-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:55:59.9235825-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/1.0.0\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0\",\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n }\r\n },\r\n \"forceRestart\": true,\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\": \"Rollback\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"upgradeTimeout\": \"01:56:40\",\r\n \"upgradeDomainTimeout\": \"01:23:20\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": 300\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1050" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "f97c6e9e-1afd-4e85-ba3a-db14190c55b4" + ], + "x-ms-correlation-request-id": [ + "f97c6e9e-1afd-4e85-ba3a-db14190c55b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205823Z:f97c6e9e-1afd-4e85-ba3a-db14190c55b4" + ], + "Date": [ + "Fri, 05 Mar 2021 20:58:22 GMT" + ], + "Content-Length": [ + "1747" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp1182\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:58:23.1195993-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:58:23.1195993-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n },\r\n \"serviceTypeHealthPolicyMap\": {}\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\": \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": 300,\r\n \"forceRestart\": true\r\n },\r\n \"version\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/48d10002-e3ff-4d7e-86a8-37f7bf1382d3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQ4ZDEwMDAyLWUzZmYtNGQ3ZS04NmE4LTM3ZjdiZjEzODJkMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d1e863a-c6e8-4b7d-8d50-68cc2a1e999e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "24dcb842-46fb-433f-86c3-c48b1e561ffc" + ], + "x-ms-correlation-request-id": [ + "24dcb842-46fb-433f-86c3-c48b1e561ffc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205620Z:24dcb842-46fb-433f-86c3-c48b1e561ffc" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:19 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"48d10002-e3ff-4d7e-86a8-37f7bf1382d3\",\r\n \"startTime\": \"2021-03-05T20:56:00.0036635Z\",\r\n \"endTime\": \"2021-03-05T20:56:05.6146519Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyL3NlcnZpY2VzL3Rlc3RTdGF0ZWxlc3NTZXJ2aWNlNTI1OT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16fc2b88-e621-42d6-a1fe-458a5dadea07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "bad553e4-8135-444c-8a1e-da9e1176e061" + ], + "x-ms-correlation-request-id": [ + "bad553e4-8135-444c-8a1e-da9e1176e061" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205620Z:bad553e4-8135-444c-8a1e-da9e1176e061" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:19 GMT" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ServiceData de88b199-1d06-4bcc-8374-924bc276269b&testapp1182&teststatelessservice5259 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyL3NlcnZpY2VzL3Rlc3RTdGF0ZWxlc3NTZXJ2aWNlNTI1OT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16fc2b88-e621-42d6-a1fe-458a5dadea07" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "7828916b-ad93-49bf-b782-bee8b456c076" + ], + "x-ms-correlation-request-id": [ + "7828916b-ad93-49bf-b782-bee8b456c076" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205641Z:7828916b-ad93-49bf-b782-bee8b456c076" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:40 GMT" + ], + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService5259\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:56:20.9443721-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:56:20.9443721-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyL3NlcnZpY2VzL3Rlc3RTdGF0ZWxlc3NTZXJ2aWNlNTI1OT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfddff11-3ae7-46bd-92a1-3567c014c5cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "4d558db6-5bd1-41bc-a9ce-dcc1be56f805" + ], + "x-ms-correlation-request-id": [ + "4d558db6-5bd1-41bc-a9ce-dcc1be56f805" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205641Z:4d558db6-5bd1-41bc-a9ce-dcc1be56f805" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:40 GMT" + ], + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService5259\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:56:20.9443721-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:56:20.9443721-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyL3NlcnZpY2VzL3Rlc3RTdGF0ZWxlc3NTZXJ2aWNlNTI1OT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"serviceKind\": \"Stateless\",\r\n \"instanceCount\": -1,\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16fc2b88-e621-42d6-a1fe-458a5dadea07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "237" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/d0870002-0b75-44af-b650-69f251d89f9d?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d0870002-0b75-44af-b650-69f251d89f9d?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "6ecc99a7-8171-4815-a760-ce40c97d528d" + ], + "x-ms-correlation-request-id": [ + "6ecc99a7-8171-4815-a760-ce40c97d528d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205621Z:6ecc99a7-8171-4815-a760-ce40c97d528d" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:20 GMT" + ], + "Content-Length": [ + "947" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182/services/testStatelessService5259\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService5259\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:56:20.9443721-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:56:20.9443721-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d0870002-0b75-44af-b650-69f251d89f9d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QwODcwMDAyLTBiNzUtNDRhZi1iNjUwLTY5ZjI1MWQ4OWY5ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16fc2b88-e621-42d6-a1fe-458a5dadea07" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7f3b696b-99e8-482a-80db-efb7ffbd98ce" + ], + "x-ms-correlation-request-id": [ + "7f3b696b-99e8-482a-80db-efb7ffbd98ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205641Z:7f3b696b-99e8-482a-80db-efb7ffbd98ce" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:40 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d0870002-0b75-44af-b650-69f251d89f9d\",\r\n \"startTime\": \"2021-03-05T20:56:21.0546395Z\",\r\n \"endTime\": \"2021-03-05T20:56:21.4293506Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlL3ZlcnNpb25zLzIuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "b929e748-e46c-4973-8bb6-de8dd721f5ef" + ], + "x-ms-correlation-request-id": [ + "b929e748-e46c-4973-8bb6-de8dd721f5ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205641Z:b929e748-e46c-4973-8bb6-de8dd721f5ef" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:41 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeVersionData de88b199-1d06-4bcc-8374-924bc276269b&votingtype&2.0.0 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlL3ZlcnNpb25zLzIuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-request-id": [ + "aef2e58c-3ca3-4007-a396-eec0b7e9c82f" + ], + "x-ms-correlation-request-id": [ + "aef2e58c-3ca3-4007-a396-eec0b7e9c82f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205822Z:aef2e58c-3ca3-4007-a396-eec0b7e9c82f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:58:22 GMT" + ], + "Content-Length": [ + "858" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:56:42.1118293-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:56:42.1118293-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.2.0.0.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlL3ZlcnNpb25zLzIuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.2.0.0.sfpkg\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "178" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "22161fe7-c7a6-4401-aaf8-a1693ea9c6b7" + ], + "x-ms-correlation-request-id": [ + "22161fe7-c7a6-4401-aaf8-a1693ea9c6b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205642Z:22161fe7-c7a6-4401-aaf8-a1693ea9c6b7" + ], + "Date": [ + "Fri, 05 Mar 2021 20:56:41 GMT" + ], + "Content-Length": [ + "857" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:56:42.1118293-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:56:42.1118293-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.2.0.0.sfpkg\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YxNmUwMDAyLTRkZGYtNGVlZC1hMjMwLWVkYzE2ZGU5YmIxYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "043ab53a-e29e-4833-9942-7362385c91eb" + ], + "x-ms-correlation-request-id": [ + "043ab53a-e29e-4833-9942-7362385c91eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205702Z:043ab53a-e29e-4833-9942-7362385c91eb" + ], + "Date": [ + "Fri, 05 Mar 2021 20:57:02 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f16e0002-4ddf-4eed-a230-edc16de9bb1c\",\r\n \"startTime\": \"2021-03-05T20:56:42.1428825Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YxNmUwMDAyLTRkZGYtNGVlZC1hMjMwLWVkYzE2ZGU5YmIxYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-request-id": [ + "04f02eb1-d13a-42bf-9758-ba17b6634b70" + ], + "x-ms-correlation-request-id": [ + "04f02eb1-d13a-42bf-9758-ba17b6634b70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205722Z:04f02eb1-d13a-42bf-9758-ba17b6634b70" + ], + "Date": [ + "Fri, 05 Mar 2021 20:57:22 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f16e0002-4ddf-4eed-a230-edc16de9bb1c\",\r\n \"startTime\": \"2021-03-05T20:56:42.1428825Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YxNmUwMDAyLTRkZGYtNGVlZC1hMjMwLWVkYzE2ZGU5YmIxYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-request-id": [ + "2bfa8833-215c-48b6-ab8e-31be2ac2be1c" + ], + "x-ms-correlation-request-id": [ + "2bfa8833-215c-48b6-ab8e-31be2ac2be1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205742Z:2bfa8833-215c-48b6-ab8e-31be2ac2be1c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:57:42 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f16e0002-4ddf-4eed-a230-edc16de9bb1c\",\r\n \"startTime\": \"2021-03-05T20:56:42.1428825Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YxNmUwMDAyLTRkZGYtNGVlZC1hMjMwLWVkYzE2ZGU5YmIxYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-request-id": [ + "754d479c-2c48-4d46-9152-be4bef0ddf04" + ], + "x-ms-correlation-request-id": [ + "754d479c-2c48-4d46-9152-be4bef0ddf04" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205802Z:754d479c-2c48-4d46-9152-be4bef0ddf04" + ], + "Date": [ + "Fri, 05 Mar 2021 20:58:02 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f16e0002-4ddf-4eed-a230-edc16de9bb1c\",\r\n \"startTime\": \"2021-03-05T20:56:42.1428825Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/f16e0002-4ddf-4eed-a230-edc16de9bb1c?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2YxNmUwMDAyLTRkZGYtNGVlZC1hMjMwLWVkYzE2ZGU5YmIxYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33caa84d-cedd-43a9-ad15-4446070be9ab" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-request-id": [ + "3d3e87e3-6197-43fd-8d9d-e6c5bc7a264e" + ], + "x-ms-correlation-request-id": [ + "3d3e87e3-6197-43fd-8d9d-e6c5bc7a264e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205822Z:3d3e87e3-6197-43fd-8d9d-e6c5bc7a264e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:58:22 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f16e0002-4ddf-4eed-a230-edc16de9bb1c\",\r\n \"startTime\": \"2021-03-05T20:56:42.1428825Z\",\r\n \"endTime\": \"2021-03-05T20:58:04.2984848Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-request-id": [ + "8df6ba84-30fb-48d6-a4d7-8d38fddcf4a3" + ], + "x-ms-correlation-request-id": [ + "8df6ba84-30fb-48d6-a4d7-8d38fddcf4a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205843Z:8df6ba84-30fb-48d6-a4d7-8d38fddcf4a3" + ], + "Date": [ + "Fri, 05 Mar 2021 20:58:42 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-request-id": [ + "1451d552-aa42-4c35-beab-e045f6c6cbb5" + ], + "x-ms-correlation-request-id": [ + "1451d552-aa42-4c35-beab-e045f6c6cbb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205903Z:1451d552-aa42-4c35-beab-e045f6c6cbb5" + ], + "Date": [ + "Fri, 05 Mar 2021 20:59:03 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-request-id": [ + "d25e6f74-99d8-4d4e-9056-e8833b5a52ac" + ], + "x-ms-correlation-request-id": [ + "d25e6f74-99d8-4d4e-9056-e8833b5a52ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205923Z:d25e6f74-99d8-4d4e-9056-e8833b5a52ac" + ], + "Date": [ + "Fri, 05 Mar 2021 20:59:23 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-request-id": [ + "79954c3d-d644-4686-8aef-6a36ee9a0d92" + ], + "x-ms-correlation-request-id": [ + "79954c3d-d644-4686-8aef-6a36ee9a0d92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T205943Z:79954c3d-d644-4686-8aef-6a36ee9a0d92" + ], + "Date": [ + "Fri, 05 Mar 2021 20:59:43 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-request-id": [ + "b005c210-5a08-4c9f-98df-f8dd4510c37e" + ], + "x-ms-correlation-request-id": [ + "b005c210-5a08-4c9f-98df-f8dd4510c37e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210003Z:b005c210-5a08-4c9f-98df-f8dd4510c37e" + ], + "Date": [ + "Fri, 05 Mar 2021 21:00:03 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-request-id": [ + "4c5e2bc5-a491-402e-bc46-25d0211c2e41" + ], + "x-ms-correlation-request-id": [ + "4c5e2bc5-a491-402e-bc46-25d0211c2e41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210024Z:4c5e2bc5-a491-402e-bc46-25d0211c2e41" + ], + "Date": [ + "Fri, 05 Mar 2021 21:00:23 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-request-id": [ + "9528fa74-94b7-4df7-9993-68bbdb9cec2f" + ], + "x-ms-correlation-request-id": [ + "9528fa74-94b7-4df7-9993-68bbdb9cec2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210044Z:9528fa74-94b7-4df7-9993-68bbdb9cec2f" + ], + "Date": [ + "Fri, 05 Mar 2021 21:00:43 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-request-id": [ + "867632fe-aa8c-46d4-9f83-ef53a005e91c" + ], + "x-ms-correlation-request-id": [ + "867632fe-aa8c-46d4-9f83-ef53a005e91c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210104Z:867632fe-aa8c-46d4-9f83-ef53a005e91c" + ], + "Date": [ + "Fri, 05 Mar 2021 21:01:03 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-request-id": [ + "793280f8-4280-4d17-a068-8d36154edde7" + ], + "x-ms-correlation-request-id": [ + "793280f8-4280-4d17-a068-8d36154edde7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210124Z:793280f8-4280-4d17-a068-8d36154edde7" + ], + "Date": [ + "Fri, 05 Mar 2021 21:01:23 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-request-id": [ + "8431153f-9ae4-4805-a4b3-549c5577ee0d" + ], + "x-ms-correlation-request-id": [ + "8431153f-9ae4-4805-a4b3-549c5577ee0d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210144Z:8431153f-9ae4-4805-a4b3-549c5577ee0d" + ], + "Date": [ + "Fri, 05 Mar 2021 21:01:44 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-request-id": [ + "ffc199dc-034d-44db-bed1-88fa6803b212" + ], + "x-ms-correlation-request-id": [ + "ffc199dc-034d-44db-bed1-88fa6803b212" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210204Z:ffc199dc-034d-44db-bed1-88fa6803b212" + ], + "Date": [ + "Fri, 05 Mar 2021 21:02:04 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0e5e9b44-499f-44bb-a380-a21b069f52d5" + ], + "x-ms-correlation-request-id": [ + "0e5e9b44-499f-44bb-a380-a21b069f52d5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210224Z:0e5e9b44-499f-44bb-a380-a21b069f52d5" + ], + "Date": [ + "Fri, 05 Mar 2021 21:02:24 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-request-id": [ + "aeac05e8-9cab-419c-919a-4c10cb65cfff" + ], + "x-ms-correlation-request-id": [ + "aeac05e8-9cab-419c-919a-4c10cb65cfff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210244Z:aeac05e8-9cab-419c-919a-4c10cb65cfff" + ], + "Date": [ + "Fri, 05 Mar 2021 21:02:44 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-request-id": [ + "e7bdca59-8691-401d-9bef-99679c591777" + ], + "x-ms-correlation-request-id": [ + "e7bdca59-8691-401d-9bef-99679c591777" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210304Z:e7bdca59-8691-401d-9bef-99679c591777" + ], + "Date": [ + "Fri, 05 Mar 2021 21:03:04 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-request-id": [ + "c3cbd6d4-4cd7-4c1b-8297-88c60e83f43e" + ], + "x-ms-correlation-request-id": [ + "c3cbd6d4-4cd7-4c1b-8297-88c60e83f43e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210324Z:c3cbd6d4-4cd7-4c1b-8297-88c60e83f43e" + ], + "Date": [ + "Fri, 05 Mar 2021 21:03:24 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 1.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/31190002-7c31-41b0-8e28-41f48fd04b2a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzMxMTkwMDAyLTdjMzEtNDFiMC04ZTI4LTQxZjQ4ZmQwNGIyYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4e3a581-bbf7-40f1-91f7-840d8fd96853" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-request-id": [ + "e01af6c7-5fd9-41d8-9b12-e2493dd49ea2" + ], + "x-ms-correlation-request-id": [ + "e01af6c7-5fd9-41d8-9b12-e2493dd49ea2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210345Z:e01af6c7-5fd9-41d8-9b12-e2493dd49ea2" + ], + "Date": [ + "Fri, 05 Mar 2021 21:03:44 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"31190002-7c31-41b0-8e28-41f48fd04b2a\",\r\n \"startTime\": \"2021-03-05T20:58:23.2066705Z\",\r\n \"endTime\": \"2021-03-05T21:03:37.5219073Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applications/testApp1182?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25zL3Rlc3RBcHAxMTgyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4f1f4a9-66f7-42b1-935c-4953ca78a2e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/64440002-2f7b-4392-ad3c-39a36d28738d?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/64440002-2f7b-4392-ad3c-39a36d28738d?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "1fd3c257-2098-4274-8e05-840ce71d08ae" + ], + "x-ms-correlation-request-id": [ + "1fd3c257-2098-4274-8e05-840ce71d08ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210345Z:1fd3c257-2098-4274-8e05-840ce71d08ae" + ], + "Date": [ + "Fri, 05 Mar 2021 21:03:45 GMT" + ], + "Content-Length": [ + "1747" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applications/testApp1182\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp1182\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:58:23.1195993-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:58:23.1195993-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n },\r\n \"serviceTypeHealthPolicyMap\": {}\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\": \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": 300,\r\n \"forceRestart\": true\r\n },\r\n \"version\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType/versions/2.0.0\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/64440002-2f7b-4392-ad3c-39a36d28738d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzY0NDQwMDAyLTJmN2ItNDM5Mi1hZDNjLTM5YTM2ZDI4NzM4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4f1f4a9-66f7-42b1-935c-4953ca78a2e6" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-request-id": [ + "5c55cd5f-13a1-492a-bf1a-ed2cbd3863f0" + ], + "x-ms-correlation-request-id": [ + "5c55cd5f-13a1-492a-bf1a-ed2cbd3863f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210405Z:5c55cd5f-13a1-492a-bf1a-ed2cbd3863f0" + ], + "Date": [ + "Fri, 05 Mar 2021 21:04:05 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"64440002-2f7b-4392-ad3c-39a36d28738d\",\r\n \"startTime\": \"2021-03-05T21:03:45.3983468Z\",\r\n \"endTime\": \"2021-03-05T21:03:49.1037443Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/64440002-2f7b-4392-ad3c-39a36d28738d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzY0NDQwMDAyLTJmN2ItNDM5Mi1hZDNjLTM5YTM2ZDI4NzM4ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4f1f4a9-66f7-42b1-935c-4953ca78a2e6" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-request-id": [ + "98f1ddfe-336e-43a1-92b6-d05e1aaadfdb" + ], + "x-ms-correlation-request-id": [ + "98f1ddfe-336e-43a1-92b6-d05e1aaadfdb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210405Z:98f1ddfe-336e-43a1-92b6-d05e1aaadfdb" + ], + "Date": [ + "Fri, 05 Mar 2021 21:04:05 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps110/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczQ4NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHMxMTAvYXBwbGljYXRpb25UeXBlcy9Wb3RpbmdUeXBlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1db1c7ba-2f4a-499b-9686-b8db2bd6cf04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/226c0002-cc62-46b7-8a13-dbd2dd2da20a?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/226c0002-cc62-46b7-8a13-dbd2dd2da20a?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "a0b4ddb8-85af-4c63-aebb-8bdbafd754f5" + ], + "x-ms-correlation-request-id": [ + "a0b4ddb8-85af-4c63-aebb-8bdbafd754f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210406Z:a0b4ddb8-85af-4c63-aebb-8bdbafd754f5" + ], + "Date": [ + "Fri, 05 Mar 2021 21:04:05 GMT" + ], + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps4879/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps110/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:54:17.9335309-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:54:17.9335309-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/226c0002-cc62-46b7-8a13-dbd2dd2da20a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzIyNmMwMDAyLWNjNjItNDZiNy04YTEzLWRiZDJkZDJkYTIwYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1db1c7ba-2f4a-499b-9686-b8db2bd6cf04" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-request-id": [ + "4c476434-aa05-49a3-a93f-7b2e4077a7a7" + ], + "x-ms-correlation-request-id": [ + "4c476434-aa05-49a3-a93f-7b2e4077a7a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210426Z:4c476434-aa05-49a3-a93f-7b2e4077a7a7" + ], + "Date": [ + "Fri, 05 Mar 2021 21:04:25 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"226c0002-cc62-46b7-8a13-dbd2dd2da20a\",\r\n \"startTime\": \"2021-03-05T21:04:06.0823271Z\",\r\n \"endTime\": \"2021-03-05T21:04:26.1751034Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/226c0002-cc62-46b7-8a13-dbd2dd2da20a?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzIyNmMwMDAyLWNjNjItNDZiNy04YTEzLWRiZDJkZDJkYTIwYT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1db1c7ba-2f4a-499b-9686-b8db2bd6cf04" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-request-id": [ + "faf7657b-1b32-433a-bdf8-204b55074337" + ], + "x-ms-correlation-request-id": [ + "faf7657b-1b32-433a-bdf8-204b55074337" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T210426Z:faf7657b-1b32-433a-bdf8-204b55074337" + ], + "Date": [ + "Fri, 05 Mar 2021 21:04:25 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "Test-ManagedApp": [ + "ps4879", + "ps110", + "testApp1182", + "testStatelessService5259" + ] + }, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppType.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppType.json new file mode 100644 index 000000000000..f33509004b6c --- /dev/null +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppType.json @@ -0,0 +1,4507 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68676cca-2b89-47c4-922c-cdfddf217b2f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "da1daeae-3296-4222-ab49-f6ffda72db1e" + ], + "x-ms-correlation-request-id": [ + "da1daeae-3296-4222-ab49-f6ffda72db1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190833Z:da1daeae-3296-4222-ab49-f6ffda72db1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:08:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps9571' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a67320ed-fc96-44ad-b5b6-5d47727c069d" + ], + "x-ms-correlation-request-id": [ + "a67320ed-fc96-44ad-b5b6-5d47727c069d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190833Z:a67320ed-fc96-44ad-b5b6-5d47727c069d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:08:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps9571' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "40545076-44f4-4bd2-b5da-86ed3e3655e6" + ], + "x-ms-correlation-request-id": [ + "40545076-44f4-4bd2-b5da-86ed3e3655e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191159Z:40545076-44f4-4bd2-b5da-86ed3e3655e6" + ], + "Date": [ + "Fri, 05 Mar 2021 19:11:59 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54b72b49-e3bf-471e-936c-d5f26c54935f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "cfb34e68-91e5-48ce-9708-4d21c4e60bb3" + ], + "x-ms-correlation-request-id": [ + "cfb34e68-91e5-48ce-9708-4d21c4e60bb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192030Z:cfb34e68-91e5-48ce-9708-4d21c4e60bb3" + ], + "Date": [ + "Fri, 05 Mar 2021 19:20:29 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8301fea3-8a60-4a1d-b1cb-cffb1a8bacb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "aff437fb-89af-43ac-b1eb-61188afd00b8" + ], + "x-ms-correlation-request-id": [ + "aff437fb-89af-43ac-b1eb-61188afd00b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192045Z:aff437fb-89af-43ac-b1eb-61188afd00b8" + ], + "Date": [ + "Fri, 05 Mar 2021 19:20:45 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06ecb6b6-9ae6-47a0-88f6-c57f9d557127" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "e0afaee6-2ac0-465d-a4de-73f3af4aefe6" + ], + "x-ms-correlation-request-id": [ + "e0afaee6-2ac0-465d-a4de-73f3af4aefe6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192100Z:e0afaee6-2ac0-465d-a4de-73f3af4aefe6" + ], + "Date": [ + "Fri, 05 Mar 2021 19:21:00 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68123f8b-3bad-4485-9fc3-9ff4152ac2d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "b734f87e-f552-4772-bb86-77f78f098d83" + ], + "x-ms-correlation-request-id": [ + "b734f87e-f552-4772-bb86-77f78f098d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192115Z:b734f87e-f552-4772-bb86-77f78f098d83" + ], + "Date": [ + "Fri, 05 Mar 2021 19:21:15 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e60f1e2-6395-4261-8624-cf5d4e6151a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "b68ab5a7-5477-4eff-adad-c167885d174e" + ], + "x-ms-correlation-request-id": [ + "b68ab5a7-5477-4eff-adad-c167885d174e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192130Z:b68ab5a7-5477-4eff-adad-c167885d174e" + ], + "Date": [ + "Fri, 05 Mar 2021 19:21:30 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "410c0438-611f-4a78-b6e0-335079919ab7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "1db02ecd-0314-4445-a287-6393697a2167" + ], + "x-ms-correlation-request-id": [ + "1db02ecd-0314-4445-a287-6393697a2167" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192145Z:1db02ecd-0314-4445-a287-6393697a2167" + ], + "Date": [ + "Fri, 05 Mar 2021 19:21:45 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d24a7117-5b8b-405f-b592-f4192698fb1e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "29664756-133e-4d41-9532-fd6dd7a023e5" + ], + "x-ms-correlation-request-id": [ + "29664756-133e-4d41-9532-fd6dd7a023e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192200Z:29664756-133e-4d41-9532-fd6dd7a023e5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:22:00 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b931ea46-6e39-4d4c-a6e2-847628cff383" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "e72b1f20-85a8-431d-8c77-1e3ce7f6ade2" + ], + "x-ms-correlation-request-id": [ + "e72b1f20-85a8-431d-8c77-1e3ce7f6ade2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192216Z:e72b1f20-85a8-431d-8c77-1e3ce7f6ade2" + ], + "Date": [ + "Fri, 05 Mar 2021 19:22:15 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dad0d21f-dcaa-4452-987b-eff0d028d2db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "b1240a2a-ff0a-49f3-8bd2-185b76f61e11" + ], + "x-ms-correlation-request-id": [ + "b1240a2a-ff0a-49f3-8bd2-185b76f61e11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192231Z:b1240a2a-ff0a-49f3-8bd2-185b76f61e11" + ], + "Date": [ + "Fri, 05 Mar 2021 19:22:31 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c92cd82f-0b98-4e8a-916f-600c216f2a95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "77a2df71-4b97-43a0-a252-2a7c1c912cea" + ], + "x-ms-correlation-request-id": [ + "77a2df71-4b97-43a0-a252-2a7c1c912cea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192246Z:77a2df71-4b97-43a0-a252-2a7c1c912cea" + ], + "Date": [ + "Fri, 05 Mar 2021 19:22:46 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a3c849c-4b25-43f6-ba57-4c52c1aef74a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "be87dd47-c6c4-433e-ba14-cd5b77a928a6" + ], + "x-ms-correlation-request-id": [ + "be87dd47-c6c4-433e-ba14-cd5b77a928a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192301Z:be87dd47-c6c4-433e-ba14-cd5b77a928a6" + ], + "Date": [ + "Fri, 05 Mar 2021 19:23:01 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd33bc6a-b0c0-4622-ab7f-32840c1e5b5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "28e4448e-1eaf-4a5f-95ae-d22c3d447c45" + ], + "x-ms-correlation-request-id": [ + "28e4448e-1eaf-4a5f-95ae-d22c3d447c45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192316Z:28e4448e-1eaf-4a5f-95ae-d22c3d447c45" + ], + "Date": [ + "Fri, 05 Mar 2021 19:23:16 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2de86dcc-a995-447d-8f74-630cc0786bac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "21615088-412e-47f3-abea-9c8618d8999e" + ], + "x-ms-correlation-request-id": [ + "21615088-412e-47f3-abea-9c8618d8999e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192331Z:21615088-412e-47f3-abea-9c8618d8999e" + ], + "Date": [ + "Fri, 05 Mar 2021 19:23:30 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eab3796f-e37f-4020-b800-173bba2e53f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "74200f6d-b203-4cdc-a0b0-e5914f155922" + ], + "x-ms-correlation-request-id": [ + "74200f6d-b203-4cdc-a0b0-e5914f155922" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192346Z:74200f6d-b203-4cdc-a0b0-e5914f155922" + ], + "Date": [ + "Fri, 05 Mar 2021 19:23:45 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecb82178-d9b1-4ad5-ba52-7ebff8a1a548" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "6eaf032b-4d39-4edf-b9a1-196118cc99e0" + ], + "x-ms-correlation-request-id": [ + "6eaf032b-4d39-4edf-b9a1-196118cc99e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192401Z:6eaf032b-4d39-4edf-b9a1-196118cc99e0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:24:00 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12a1f4e5-6ed9-4ff7-8931-66fef1c25df1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "f80051eb-510f-415a-b1cb-3b6f46ddfaec" + ], + "x-ms-correlation-request-id": [ + "f80051eb-510f-415a-b1cb-3b6f46ddfaec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192416Z:f80051eb-510f-415a-b1cb-3b6f46ddfaec" + ], + "Date": [ + "Fri, 05 Mar 2021 19:24:15 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c783de8a-a140-4112-bdc4-f124f3a6ccb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "b21915c1-09a8-4ab6-afa5-b99bd6eaf7d0" + ], + "x-ms-correlation-request-id": [ + "b21915c1-09a8-4ab6-afa5-b99bd6eaf7d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192431Z:b21915c1-09a8-4ab6-afa5-b99bd6eaf7d0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:24:31 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60a5464a-cd1d-460f-a379-2d439a2d82ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "6304a9f2-27a3-49dc-8ab7-8eaec45d660a" + ], + "x-ms-correlation-request-id": [ + "6304a9f2-27a3-49dc-8ab7-8eaec45d660a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192447Z:6304a9f2-27a3-49dc-8ab7-8eaec45d660a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:24:46 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103203e7-ffc5-4043-a94b-42745f046b0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "9d59a2c1-1de1-479f-8c4e-a3198b9ef481" + ], + "x-ms-correlation-request-id": [ + "9d59a2c1-1de1-479f-8c4e-a3198b9ef481" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192502Z:9d59a2c1-1de1-479f-8c4e-a3198b9ef481" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:01 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "454d2d8a-64c3-497e-8a1b-ca679133e494" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "49690059-22f9-492b-b873-804083523a3b" + ], + "x-ms-correlation-request-id": [ + "49690059-22f9-492b-b873-804083523a3b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192517Z:49690059-22f9-492b-b873-804083523a3b" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:16 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e69f296-a030-4659-ade6-3df649ec20b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "c79bf9e9-da53-4530-8ba3-6cc8dc1a0630" + ], + "x-ms-correlation-request-id": [ + "c79bf9e9-da53-4530-8ba3-6cc8dc1a0630" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192532Z:c79bf9e9-da53-4530-8ba3-6cc8dc1a0630" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:31 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9354b25-3c2c-44d4-a930-158de9953e4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "7b3abd26-8fc2-41f3-a235-d79002b0c345" + ], + "x-ms-correlation-request-id": [ + "7b3abd26-8fc2-41f3-a235-d79002b0c345" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192532Z:7b3abd26-8fc2-41f3-a235-d79002b0c345" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:31 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"fqdn\": \"sfmcps-ps6229.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"40.74.176.98\",\r\n \"clusterCertificateThumbprints\": [\r\n \"8C32634813A6656DD745C2EAC75CF700D564E2CA\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczk1NzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ae90a912-b0a7-494f-b625-2ad1559c26f3" + ], + "x-ms-correlation-request-id": [ + "ae90a912-b0a7-494f-b625-2ad1559c26f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190834Z:ae90a912-b0a7-494f-b625-2ad1559c26f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:08:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps9571' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczk1NzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "40b04975-1380-4605-b470-1f98fc841aee" + ], + "x-ms-correlation-request-id": [ + "40b04975-1380-4605-b470-1f98fc841aee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190835Z:40b04975-1380-4605-b470-1f98fc841aee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:08:34 GMT" + ], + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571\",\r\n \"name\": \"sfmcps-rg-ps9571\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "aa9a3b3f-9c32-4ccd-8cc6-443ca5a1bf5c" + ], + "x-ms-correlation-request-id": [ + "aa9a3b3f-9c32-4ccd-8cc6-443ca5a1bf5c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190838Z:aa9a3b3f-9c32-4ccd-8cc6-443ca5a1bf5c" + ], + "Date": [ + "Fri, 05 Mar 2021 19:08:37 GMT" + ], + "Content-Length": [ + "930" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps6229\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"54a3f664-364e-4e44-b8a1-91eb06eebb32\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps6229\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5bb609e3-66b2-40bb-aea4-4a2673a28ccb" + ], + "x-ms-correlation-request-id": [ + "5bb609e3-66b2-40bb-aea4-4a2673a28ccb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190858Z:5bb609e3-66b2-40bb-aea4-4a2673a28ccb" + ], + "Date": [ + "Fri, 05 Mar 2021 19:08:57 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9647942a-c054-4783-963d-faa565640d8a" + ], + "x-ms-correlation-request-id": [ + "9647942a-c054-4783-963d-faa565640d8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190918Z:9647942a-c054-4783-963d-faa565640d8a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:09:18 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "48609c39-5b83-41f4-a3c3-a698057b4be9" + ], + "x-ms-correlation-request-id": [ + "48609c39-5b83-41f4-a3c3-a698057b4be9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190938Z:48609c39-5b83-41f4-a3c3-a698057b4be9" + ], + "Date": [ + "Fri, 05 Mar 2021 19:09:38 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "b8f95264-91aa-4dd5-82fd-467c58648479" + ], + "x-ms-correlation-request-id": [ + "b8f95264-91aa-4dd5-82fd-467c58648479" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T190959Z:b8f95264-91aa-4dd5-82fd-467c58648479" + ], + "Date": [ + "Fri, 05 Mar 2021 19:09:58 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "e31d2afe-885d-4c45-9a8a-1dd007e9b0b0" + ], + "x-ms-correlation-request-id": [ + "e31d2afe-885d-4c45-9a8a-1dd007e9b0b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191019Z:e31d2afe-885d-4c45-9a8a-1dd007e9b0b0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:10:18 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "2d9b71f2-2336-4c63-8159-680a66d10871" + ], + "x-ms-correlation-request-id": [ + "2d9b71f2-2336-4c63-8159-680a66d10871" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191039Z:2d9b71f2-2336-4c63-8159-680a66d10871" + ], + "Date": [ + "Fri, 05 Mar 2021 19:10:38 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "bb72186b-f07a-4f0d-9b30-89191d392d34" + ], + "x-ms-correlation-request-id": [ + "bb72186b-f07a-4f0d-9b30-89191d392d34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191059Z:bb72186b-f07a-4f0d-9b30-89191d392d34" + ], + "Date": [ + "Fri, 05 Mar 2021 19:10:58 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "f90a1e9f-b308-4abd-9749-93f81e1ef3be" + ], + "x-ms-correlation-request-id": [ + "f90a1e9f-b308-4abd-9749-93f81e1ef3be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191119Z:f90a1e9f-b308-4abd-9749-93f81e1ef3be" + ], + "Date": [ + "Fri, 05 Mar 2021 19:11:18 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "bc88fb24-dd50-4b29-beca-932f02f40464" + ], + "x-ms-correlation-request-id": [ + "bc88fb24-dd50-4b29-beca-932f02f40464" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191139Z:bc88fb24-dd50-4b29-beca-932f02f40464" + ], + "Date": [ + "Fri, 05 Mar 2021 19:11:38 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/dfe30001-b559-408d-9264-4be0e91fcc3b?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2RmZTMwMDAxLWI1NTktNDA4ZC05MjY0LTRiZTBlOTFmY2MzYj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50d384-0c78-4a82-99d3-8217e1bb1f08" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "a164fe88-1fe6-425f-8701-510c80b32b31" + ], + "x-ms-correlation-request-id": [ + "a164fe88-1fe6-425f-8701-510c80b32b31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191159Z:a164fe88-1fe6-425f-8701-510c80b32b31" + ], + "Date": [ + "Fri, 05 Mar 2021 19:11:59 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dfe30001-b559-408d-9264-4be0e91fcc3b\",\r\n \"startTime\": \"2021-03-05T19:08:37.9937013Z\",\r\n \"endTime\": \"2021-03-05T19:11:45.1956981Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "703d9f22-e90e-4e6e-b419-f16ad8857f5a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "14446639-e248-458e-b1d3-cb1d4b57bd55" + ], + "x-ms-correlation-request-id": [ + "14446639-e248-458e-b1d3-cb1d4b57bd55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191159Z:14446639-e248-458e-b1d3-cb1d4b57bd55" + ], + "Date": [ + "Fri, 05 Mar 2021 19:11:59 GMT" + ], + "Content-Length": [ + "139" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData 54a3f664-364e-4e44-b8a1-91eb06eebb32_pnt could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "1687c4e4-b9e0-4bfc-985c-8604ef1d0fe0" + ], + "x-ms-correlation-request-id": [ + "1687c4e4-b9e0-4bfc-985c-8604ef1d0fe0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192022Z:1687c4e4-b9e0-4bfc-985c-8604ef1d0fe0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:20:22 GMT" + ], + "Content-Length": [ + "697" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM2MjI5L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba902472-b198-4716-a688-b20dbf20ab2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "299" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "1dda37cc-389c-41b6-bcc4-d54f6892b716" + ], + "x-ms-correlation-request-id": [ + "1dda37cc-389c-41b6-bcc4-d54f6892b716" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191200Z:1dda37cc-389c-41b6-bcc4-d54f6892b716" + ], + "Date": [ + "Fri, 05 Mar 2021 19:12:00 GMT" + ], + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "77bc9005-413a-45cf-9f15-1b75e5797385" + ], + "x-ms-correlation-request-id": [ + "77bc9005-413a-45cf-9f15-1b75e5797385" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191220Z:77bc9005-413a-45cf-9f15-1b75e5797385" + ], + "Date": [ + "Fri, 05 Mar 2021 19:12:20 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "6399414a-e104-4c39-912b-011dc5577bd3" + ], + "x-ms-correlation-request-id": [ + "6399414a-e104-4c39-912b-011dc5577bd3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191240Z:6399414a-e104-4c39-912b-011dc5577bd3" + ], + "Date": [ + "Fri, 05 Mar 2021 19:12:40 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "c5e6c447-3b3b-4d57-802d-7d9ee0cad310" + ], + "x-ms-correlation-request-id": [ + "c5e6c447-3b3b-4d57-802d-7d9ee0cad310" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191300Z:c5e6c447-3b3b-4d57-802d-7d9ee0cad310" + ], + "Date": [ + "Fri, 05 Mar 2021 19:13:00 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "841ef618-c41f-467f-a07b-27375dc4bdc1" + ], + "x-ms-correlation-request-id": [ + "841ef618-c41f-467f-a07b-27375dc4bdc1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191320Z:841ef618-c41f-467f-a07b-27375dc4bdc1" + ], + "Date": [ + "Fri, 05 Mar 2021 19:13:20 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "b11d2917-4ac4-43bc-b3ce-e0224d2162f4" + ], + "x-ms-correlation-request-id": [ + "b11d2917-4ac4-43bc-b3ce-e0224d2162f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191340Z:b11d2917-4ac4-43bc-b3ce-e0224d2162f4" + ], + "Date": [ + "Fri, 05 Mar 2021 19:13:40 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "38aeb92b-89fa-498e-8a12-e24436c8938d" + ], + "x-ms-correlation-request-id": [ + "38aeb92b-89fa-498e-8a12-e24436c8938d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191400Z:38aeb92b-89fa-498e-8a12-e24436c8938d" + ], + "Date": [ + "Fri, 05 Mar 2021 19:14:00 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "07c950d6-a340-4527-aab8-03c69a8372e3" + ], + "x-ms-correlation-request-id": [ + "07c950d6-a340-4527-aab8-03c69a8372e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191421Z:07c950d6-a340-4527-aab8-03c69a8372e3" + ], + "Date": [ + "Fri, 05 Mar 2021 19:14:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "79a456a5-3837-4a24-91a3-748f07f9bea5" + ], + "x-ms-correlation-request-id": [ + "79a456a5-3837-4a24-91a3-748f07f9bea5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191441Z:79a456a5-3837-4a24-91a3-748f07f9bea5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:14:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "9b70ec26-7547-4bf3-8717-20a8d4ef9dc6" + ], + "x-ms-correlation-request-id": [ + "9b70ec26-7547-4bf3-8717-20a8d4ef9dc6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191501Z:9b70ec26-7547-4bf3-8717-20a8d4ef9dc6" + ], + "Date": [ + "Fri, 05 Mar 2021 19:15:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "852d58f3-ad29-4d49-9660-f3423fa4d621" + ], + "x-ms-correlation-request-id": [ + "852d58f3-ad29-4d49-9660-f3423fa4d621" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191521Z:852d58f3-ad29-4d49-9660-f3423fa4d621" + ], + "Date": [ + "Fri, 05 Mar 2021 19:15:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "daf6cf5f-aa29-494d-887a-83070d61026c" + ], + "x-ms-correlation-request-id": [ + "daf6cf5f-aa29-494d-887a-83070d61026c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191541Z:daf6cf5f-aa29-494d-887a-83070d61026c" + ], + "Date": [ + "Fri, 05 Mar 2021 19:15:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "2361852b-edb0-432b-8553-ddfde442f569" + ], + "x-ms-correlation-request-id": [ + "2361852b-edb0-432b-8553-ddfde442f569" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191601Z:2361852b-edb0-432b-8553-ddfde442f569" + ], + "Date": [ + "Fri, 05 Mar 2021 19:16:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "72d58598-286e-41e7-a9de-dde0125151f8" + ], + "x-ms-correlation-request-id": [ + "72d58598-286e-41e7-a9de-dde0125151f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191621Z:72d58598-286e-41e7-a9de-dde0125151f8" + ], + "Date": [ + "Fri, 05 Mar 2021 19:16:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "1198a53e-5bee-4c9b-8855-5d8e589a93f3" + ], + "x-ms-correlation-request-id": [ + "1198a53e-5bee-4c9b-8855-5d8e589a93f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191641Z:1198a53e-5bee-4c9b-8855-5d8e589a93f3" + ], + "Date": [ + "Fri, 05 Mar 2021 19:16:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "02c71548-0e92-4f43-8c21-3998688e7e9a" + ], + "x-ms-correlation-request-id": [ + "02c71548-0e92-4f43-8c21-3998688e7e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191701Z:02c71548-0e92-4f43-8c21-3998688e7e9a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:17:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "9150997e-3263-4d82-a6dd-2f92a50d23b8" + ], + "x-ms-correlation-request-id": [ + "9150997e-3263-4d82-a6dd-2f92a50d23b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191721Z:9150997e-3263-4d82-a6dd-2f92a50d23b8" + ], + "Date": [ + "Fri, 05 Mar 2021 19:17:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "0387f459-c485-4bfd-a5f0-bc708746e2dc" + ], + "x-ms-correlation-request-id": [ + "0387f459-c485-4bfd-a5f0-bc708746e2dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191742Z:0387f459-c485-4bfd-a5f0-bc708746e2dc" + ], + "Date": [ + "Fri, 05 Mar 2021 19:17:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "ddc7513b-68e8-4b57-a8a6-1f6f00ea13ff" + ], + "x-ms-correlation-request-id": [ + "ddc7513b-68e8-4b57-a8a6-1f6f00ea13ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191802Z:ddc7513b-68e8-4b57-a8a6-1f6f00ea13ff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:18:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "b898819b-75ee-4f44-958c-903c75bbe0e8" + ], + "x-ms-correlation-request-id": [ + "b898819b-75ee-4f44-958c-903c75bbe0e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191822Z:b898819b-75ee-4f44-958c-903c75bbe0e8" + ], + "Date": [ + "Fri, 05 Mar 2021 19:18:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "4f039bad-cbc0-488e-8665-13bb9c84f307" + ], + "x-ms-correlation-request-id": [ + "4f039bad-cbc0-488e-8665-13bb9c84f307" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191842Z:4f039bad-cbc0-488e-8665-13bb9c84f307" + ], + "Date": [ + "Fri, 05 Mar 2021 19:18:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "6711ebcd-c158-4dac-a0b5-07b26cbeff7a" + ], + "x-ms-correlation-request-id": [ + "6711ebcd-c158-4dac-a0b5-07b26cbeff7a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191902Z:6711ebcd-c158-4dac-a0b5-07b26cbeff7a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:19:01 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "5114d489-e4f7-42be-ab1f-9f6ad692636f" + ], + "x-ms-correlation-request-id": [ + "5114d489-e4f7-42be-ab1f-9f6ad692636f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191922Z:5114d489-e4f7-42be-ab1f-9f6ad692636f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:19:21 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "58802a75-eb0d-4790-a043-2a793da79ec8" + ], + "x-ms-correlation-request-id": [ + "58802a75-eb0d-4790-a043-2a793da79ec8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T191942Z:58802a75-eb0d-4790-a043-2a793da79ec8" + ], + "Date": [ + "Fri, 05 Mar 2021 19:19:41 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "207f8796-d31b-4b5d-a875-cf0d453212b2" + ], + "x-ms-correlation-request-id": [ + "207f8796-d31b-4b5d-a875-cf0d453212b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192002Z:207f8796-d31b-4b5d-a875-cf0d453212b2" + ], + "Date": [ + "Fri, 05 Mar 2021 19:20:02 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/810e0001-7194-430c-8665-ad95e40a3a34?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgxMGUwMDAxLTcxOTQtNDMwYy04NjY1LWFkOTVlNDBhM2EzND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "0c258c1c-c41c-40f1-8fcd-57754426dd80" + ], + "x-ms-correlation-request-id": [ + "0c258c1c-c41c-40f1-8fcd-57754426dd80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192022Z:0c258c1c-c41c-40f1-8fcd-57754426dd80" + ], + "Date": [ + "Fri, 05 Mar 2021 19:20:22 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"810e0001-7194-430c-8665-ad95e40a3a34\",\r\n \"startTime\": \"2021-03-05T19:12:00.1677174Z\",\r\n \"endTime\": \"2021-03-05T19:20:03.3644249Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXM/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d46cb6e5-cbf9-472c-871f-6c50ad3f9e54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "58cffb2b-58cd-4f93-a8af-af54e6884683" + ], + "x-ms-correlation-request-id": [ + "58cffb2b-58cd-4f93-a8af-af54e6884683" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192532Z:58cffb2b-58cd-4f93-a8af-af54e6884683" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:31 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9354b25-3c2c-44d4-a930-158de9953e4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "3df41b00-f6b2-420b-9c10-d32ec7c949f1" + ], + "x-ms-correlation-request-id": [ + "3df41b00-f6b2-420b-9c10-d32ec7c949f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192532Z:3df41b00-f6b2-420b-9c10-d32ec7c949f1" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:32 GMT" + ], + "Content-Length": [ + "153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeData 54a3f664-364e-4e44-b8a1-91eb06eebb32&votingtype could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80ccd8a1-c5b7-42d3-a9c7-3f24cde1b194" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "03679265-d6c1-4dff-a044-c0f9e53a06fc" + ], + "x-ms-correlation-request-id": [ + "03679265-d6c1-4dff-a044-c0f9e53a06fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192533Z:03679265-d6c1-4dff-a044-c0f9e53a06fc" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:32 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:25:33.0315249-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:25:33.0315249-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52aca0bc-3216-4fa2-bfac-87074d3f338d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "69434537-eb82-4e9b-a92d-6cb59694dfd1" + ], + "x-ms-correlation-request-id": [ + "69434537-eb82-4e9b-a92d-6cb59694dfd1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192533Z:69434537-eb82-4e9b-a92d-6cb59694dfd1" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:32 GMT" + ], + "Content-Length": [ + "760" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:25:33.4965089-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:25:33.4965089-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cceb5a11-a445-4fca-994a-125ae4f7702f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "f500d0de-4081-435b-b45d-ad17f05da39f" + ], + "x-ms-correlation-request-id": [ + "f500d0de-4081-435b-b45d-ad17f05da39f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192534Z:f500d0de-4081-435b-b45d-ad17f05da39f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:33 GMT" + ], + "Content-Length": [ + "153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeData 54a3f664-364e-4e44-b8a1-91eb06eebb32&votingtype could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9354b25-3c2c-44d4-a930-158de9953e4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "c10408d5-9fcb-4c42-9fad-86cf988c1f1b" + ], + "x-ms-correlation-request-id": [ + "c10408d5-9fcb-4c42-9fad-86cf988c1f1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192533Z:c10408d5-9fcb-4c42-9fad-86cf988c1f1b" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:32 GMT" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:25:33.0315249-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:25:33.0315249-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5076c89e-8765-4d91-a2df-183b048dd3fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "c6b49e81-b259-47b9-adbc-9dca50674b4a" + ], + "x-ms-correlation-request-id": [ + "c6b49e81-b259-47b9-adbc-9dca50674b4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192533Z:c6b49e81-b259-47b9-adbc-9dca50674b4a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:32 GMT" + ], + "Content-Length": [ + "760" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps6229/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:25:33.4965089-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:25:33.4965089-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps9571/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps6229/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczk1NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM2MjI5L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5379a1c-582b-4c99-9ed2-601c32184e8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "1d40b614-3e61-47e8-83c9-920648c3839b" + ], + "x-ms-correlation-request-id": [ + "1d40b614-3e61-47e8-83c9-920648c3839b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192533Z:1d40b614-3e61-47e8-83c9-920648c3839b" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:33 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "Test-ManagedAppType": [ + "ps9571", + "ps6229" + ] + }, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppTypeVersion.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppTypeVersion.json new file mode 100644 index 000000000000..9d02396859cc --- /dev/null +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedAppTypeVersion.json @@ -0,0 +1,5188 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef9d7c11-6919-4778-b972-66998a58a61f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "07e5ffc4-1e87-47cc-8e7a-2b61d10e14c7" + ], + "x-ms-correlation-request-id": [ + "07e5ffc4-1e87-47cc-8e7a-2b61d10e14c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192540Z:07e5ffc4-1e87-47cc-8e7a-2b61d10e14c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps1128' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c9111fa4-bd90-468a-bbe4-98abf37d9d88" + ], + "x-ms-correlation-request-id": [ + "c9111fa4-bd90-468a-bbe4-98abf37d9d88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192540Z:c9111fa4-bd90-468a-bbe4-98abf37d9d88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps1128' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "bf5f94e8-29e6-48c2-972f-ce6eb29da4a5" + ], + "x-ms-correlation-request-id": [ + "bf5f94e8-29e6-48c2-972f-ce6eb29da4a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192904Z:bf5f94e8-29e6-48c2-972f-ce6eb29da4a5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:29:04 GMT" + ], + "Content-Length": [ + "1110" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4020e72e-d732-47fe-b8f2-6c86d25135b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "c939bd84-13f2-4195-97f8-0075263fdfaf" + ], + "x-ms-correlation-request-id": [ + "c939bd84-13f2-4195-97f8-0075263fdfaf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193735Z:c939bd84-13f2-4195-97f8-0075263fdfaf" + ], + "Date": [ + "Fri, 05 Mar 2021 19:37:35 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2a63683-cfa7-420a-a2d9-2ed50095dbaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "5756e6d7-d8dc-4329-8bea-de0c75c63e48" + ], + "x-ms-correlation-request-id": [ + "5756e6d7-d8dc-4329-8bea-de0c75c63e48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193750Z:5756e6d7-d8dc-4329-8bea-de0c75c63e48" + ], + "Date": [ + "Fri, 05 Mar 2021 19:37:50 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "473b321d-6e0b-4ffc-a8e4-68ff71b525b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "064ea406-7868-49f5-8abf-b646ec6772cb" + ], + "x-ms-correlation-request-id": [ + "064ea406-7868-49f5-8abf-b646ec6772cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193806Z:064ea406-7868-49f5-8abf-b646ec6772cb" + ], + "Date": [ + "Fri, 05 Mar 2021 19:38:06 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a83d3ea5-0091-4149-b58a-a7703ad2dcdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "21ce9fdb-c3a9-46f7-b5f5-870e4a799362" + ], + "x-ms-correlation-request-id": [ + "21ce9fdb-c3a9-46f7-b5f5-870e4a799362" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193821Z:21ce9fdb-c3a9-46f7-b5f5-870e4a799362" + ], + "Date": [ + "Fri, 05 Mar 2021 19:38:20 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e63023c9-0659-4e2f-a838-1517dcf89641" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "d51792a7-54c3-4878-9bc2-7422ea826d45" + ], + "x-ms-correlation-request-id": [ + "d51792a7-54c3-4878-9bc2-7422ea826d45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193836Z:d51792a7-54c3-4878-9bc2-7422ea826d45" + ], + "Date": [ + "Fri, 05 Mar 2021 19:38:35 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b96d447-2d55-4a13-8876-d57f8dabe301" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "2671a5b2-c2cd-4285-b6c4-d34bf0024cb2" + ], + "x-ms-correlation-request-id": [ + "2671a5b2-c2cd-4285-b6c4-d34bf0024cb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193851Z:2671a5b2-c2cd-4285-b6c4-d34bf0024cb2" + ], + "Date": [ + "Fri, 05 Mar 2021 19:38:50 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d3dac6d-bdc4-4004-acbf-aacf16bdfda5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "65385fe5-44a1-4282-ab28-23c38e5ea3db" + ], + "x-ms-correlation-request-id": [ + "65385fe5-44a1-4282-ab28-23c38e5ea3db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193906Z:65385fe5-44a1-4282-ab28-23c38e5ea3db" + ], + "Date": [ + "Fri, 05 Mar 2021 19:39:05 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb76cc-b65c-4d44-a1cf-d705cb07371c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "660d1a05-cf41-4eed-83b1-70f86652454e" + ], + "x-ms-correlation-request-id": [ + "660d1a05-cf41-4eed-83b1-70f86652454e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193921Z:660d1a05-cf41-4eed-83b1-70f86652454e" + ], + "Date": [ + "Fri, 05 Mar 2021 19:39:20 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "038eb254-6f63-4f33-906b-bc91167964ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "e8bc8ce4-da0e-4c94-9273-9d529b16fd81" + ], + "x-ms-correlation-request-id": [ + "e8bc8ce4-da0e-4c94-9273-9d529b16fd81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193936Z:e8bc8ce4-da0e-4c94-9273-9d529b16fd81" + ], + "Date": [ + "Fri, 05 Mar 2021 19:39:35 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "256b4467-504a-4082-ab73-20c31ec40a93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "5f6a4fa1-b888-4273-a186-f0c7f6aa02c9" + ], + "x-ms-correlation-request-id": [ + "5f6a4fa1-b888-4273-a186-f0c7f6aa02c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193951Z:5f6a4fa1-b888-4273-a186-f0c7f6aa02c9" + ], + "Date": [ + "Fri, 05 Mar 2021 19:39:51 GMT" + ], + "Content-Length": [ + "1147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95450e6a-b8f8-42a7-8a75-f3742214fc93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "07293699-36a7-4d0d-b016-1ef4f4159c97" + ], + "x-ms-correlation-request-id": [ + "07293699-36a7-4d0d-b016-1ef4f4159c97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194006Z:07293699-36a7-4d0d-b016-1ef4f4159c97" + ], + "Date": [ + "Fri, 05 Mar 2021 19:40:06 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d3f68b1-ad6b-4e7e-b59c-d09fb08b01bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "44609357-e22a-4894-b109-e35d20f9429a" + ], + "x-ms-correlation-request-id": [ + "44609357-e22a-4894-b109-e35d20f9429a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194021Z:44609357-e22a-4894-b109-e35d20f9429a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:40:21 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9d6cc64-c6cd-4bd2-b33d-11cec0a21ffa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "682b347f-3d2f-466b-8bca-1215e02ce1e3" + ], + "x-ms-correlation-request-id": [ + "682b347f-3d2f-466b-8bca-1215e02ce1e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194036Z:682b347f-3d2f-466b-8bca-1215e02ce1e3" + ], + "Date": [ + "Fri, 05 Mar 2021 19:40:36 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d277b5f0-d399-415c-a36e-036fe259246f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "51cfd23f-d898-4764-aea1-2ae5b15f6ce5" + ], + "x-ms-correlation-request-id": [ + "51cfd23f-d898-4764-aea1-2ae5b15f6ce5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194052Z:51cfd23f-d898-4764-aea1-2ae5b15f6ce5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:40:51 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2b03a27-e29d-48ff-b6db-da75ce12af4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "5518a6f2-77ff-4a96-84f4-f1aa2c0f6882" + ], + "x-ms-correlation-request-id": [ + "5518a6f2-77ff-4a96-84f4-f1aa2c0f6882" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194107Z:5518a6f2-77ff-4a96-84f4-f1aa2c0f6882" + ], + "Date": [ + "Fri, 05 Mar 2021 19:41:06 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56611027-6d9e-4033-b351-4fd5826e0c74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "1270179e-28aa-42fd-a2c1-7f184fdceff1" + ], + "x-ms-correlation-request-id": [ + "1270179e-28aa-42fd-a2c1-7f184fdceff1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194122Z:1270179e-28aa-42fd-a2c1-7f184fdceff1" + ], + "Date": [ + "Fri, 05 Mar 2021 19:41:21 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c33275e-852c-48e0-8f19-01bbac1c5529" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "79e1f5dd-b1d8-470c-8744-3c34f289f686" + ], + "x-ms-correlation-request-id": [ + "79e1f5dd-b1d8-470c-8744-3c34f289f686" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194137Z:79e1f5dd-b1d8-470c-8744-3c34f289f686" + ], + "Date": [ + "Fri, 05 Mar 2021 19:41:36 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "663e2408-f3dc-4c4d-ad09-7bf86b6e5ed6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "f3dc643e-178a-469e-a3ca-2c8b3d4b9954" + ], + "x-ms-correlation-request-id": [ + "f3dc643e-178a-469e-a3ca-2c8b3d4b9954" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194152Z:f3dc643e-178a-469e-a3ca-2c8b3d4b9954" + ], + "Date": [ + "Fri, 05 Mar 2021 19:41:51 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "279b101b-b347-4d4b-a1c4-52727732f760" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "9941b95c-b290-4276-961b-4bb045c03b1a" + ], + "x-ms-correlation-request-id": [ + "9941b95c-b290-4276-961b-4bb045c03b1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194207Z:9941b95c-b290-4276-961b-4bb045c03b1a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:06 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a00d320-ad57-4d54-8d0f-174ce53291fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f350bf32-35e9-4645-bb6d-0fd43f575258" + ], + "x-ms-correlation-request-id": [ + "f350bf32-35e9-4645-bb6d-0fd43f575258" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194222Z:f350bf32-35e9-4645-bb6d-0fd43f575258" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:22 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "197144fd-fcce-4881-bb2f-d6d8e0e0a5e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "0222bf27-3407-4ae0-96a8-63661b07f7b5" + ], + "x-ms-correlation-request-id": [ + "0222bf27-3407-4ae0-96a8-63661b07f7b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194237Z:0222bf27-3407-4ae0-96a8-63661b07f7b5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:37 GMT" + ], + "Content-Length": [ + "1153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2020eacb-4a24-4c40-a110-638399ce5ec0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "40ecfab3-2196-4998-b048-93ee58291037" + ], + "x-ms-correlation-request-id": [ + "40ecfab3-2196-4998-b048-93ee58291037" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194252Z:40ecfab3-2196-4998-b048-93ee58291037" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:52 GMT" + ], + "Content-Length": [ + "1143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "25b902d4-2b79-430d-b610-64675b9974c1" + ], + "x-ms-correlation-request-id": [ + "25b902d4-2b79-430d-b610-64675b9974c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194253Z:25b902d4-2b79-430d-b610-64675b9974c1" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:53 GMT" + ], + "Content-Length": [ + "1143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"fqdn\": \"sfmcps-ps8217.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"20.188.77.104\",\r\n \"clusterCertificateThumbprints\": [\r\n \"E7B75E492603F4B8D5BFB0C604A1D9344E38CB81\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczExMjg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "3e7d6648-d0d3-46b9-b8dc-f3f8375db8f3" + ], + "x-ms-correlation-request-id": [ + "3e7d6648-d0d3-46b9-b8dc-f3f8375db8f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192540Z:3e7d6648-d0d3-46b9-b8dc-f3f8375db8f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "108" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps1128' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczExMjg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0f13b3a4-ad8c-4e21-b2cb-cc6ce1ed95bf" + ], + "x-ms-correlation-request-id": [ + "0f13b3a4-ad8c-4e21-b2cb-cc6ce1ed95bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192541Z:0f13b3a4-ad8c-4e21-b2cb-cc6ce1ed95bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:40 GMT" + ], + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128\",\r\n \"name\": \"sfmcps-rg-ps1128\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "44800886-c875-4e89-978d-c88df740cfac" + ], + "x-ms-correlation-request-id": [ + "44800886-c875-4e89-978d-c88df740cfac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192543Z:44800886-c875-4e89-978d-c88df740cfac" + ], + "Date": [ + "Fri, 05 Mar 2021 19:25:43 GMT" + ], + "Content-Length": [ + "930" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps8217\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"6a0620ee-7747-4493-9072-8f25a6e263cb\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps8217\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "72f436f7-7380-4b4d-8d90-1e1362ba386c" + ], + "x-ms-correlation-request-id": [ + "72f436f7-7380-4b4d-8d90-1e1362ba386c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192604Z:72f436f7-7380-4b4d-8d90-1e1362ba386c" + ], + "Date": [ + "Fri, 05 Mar 2021 19:26:03 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "07064421-d880-430e-b8b6-e1f23a283ba4" + ], + "x-ms-correlation-request-id": [ + "07064421-d880-430e-b8b6-e1f23a283ba4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192624Z:07064421-d880-430e-b8b6-e1f23a283ba4" + ], + "Date": [ + "Fri, 05 Mar 2021 19:26:23 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "bd2cf776-2823-4bd0-85d3-83e25a8c5d00" + ], + "x-ms-correlation-request-id": [ + "bd2cf776-2823-4bd0-85d3-83e25a8c5d00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192644Z:bd2cf776-2823-4bd0-85d3-83e25a8c5d00" + ], + "Date": [ + "Fri, 05 Mar 2021 19:26:43 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "5a2eff43-5948-4ea2-af15-2fd50dd39706" + ], + "x-ms-correlation-request-id": [ + "5a2eff43-5948-4ea2-af15-2fd50dd39706" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192704Z:5a2eff43-5948-4ea2-af15-2fd50dd39706" + ], + "Date": [ + "Fri, 05 Mar 2021 19:27:03 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "2dbfdf0a-8563-44a8-bdeb-7cca5c15b900" + ], + "x-ms-correlation-request-id": [ + "2dbfdf0a-8563-44a8-bdeb-7cca5c15b900" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192724Z:2dbfdf0a-8563-44a8-bdeb-7cca5c15b900" + ], + "Date": [ + "Fri, 05 Mar 2021 19:27:23 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b1fa6645-6deb-4d1c-801d-5fc5007246ff" + ], + "x-ms-correlation-request-id": [ + "b1fa6645-6deb-4d1c-801d-5fc5007246ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192744Z:b1fa6645-6deb-4d1c-801d-5fc5007246ff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:27:44 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "c55d0c1c-01f8-4ecf-9748-d0b2c4fd73da" + ], + "x-ms-correlation-request-id": [ + "c55d0c1c-01f8-4ecf-9748-d0b2c4fd73da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192804Z:c55d0c1c-01f8-4ecf-9748-d0b2c4fd73da" + ], + "Date": [ + "Fri, 05 Mar 2021 19:28:04 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "c52e845b-c98e-4343-a911-42cd9f73c1b7" + ], + "x-ms-correlation-request-id": [ + "c52e845b-c98e-4343-a911-42cd9f73c1b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192824Z:c52e845b-c98e-4343-a911-42cd9f73c1b7" + ], + "Date": [ + "Fri, 05 Mar 2021 19:28:24 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "909cb489-6367-4b1a-aefb-8e845309b249" + ], + "x-ms-correlation-request-id": [ + "909cb489-6367-4b1a-aefb-8e845309b249" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192844Z:909cb489-6367-4b1a-aefb-8e845309b249" + ], + "Date": [ + "Fri, 05 Mar 2021 19:28:44 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/40260004-7191-4485-ac2a-67ba1bdee6ec?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzQwMjYwMDA0LTcxOTEtNDQ4NS1hYzJhLTY3YmExYmRlZTZlYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91b47a5-30d0-414b-a112-5b0656e3f5a4" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "d0945714-d67d-40b0-b85c-d797944a72e0" + ], + "x-ms-correlation-request-id": [ + "d0945714-d67d-40b0-b85c-d797944a72e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192904Z:d0945714-d67d-40b0-b85c-d797944a72e0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:29:04 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"40260004-7191-4485-ac2a-67ba1bdee6ec\",\r\n \"startTime\": \"2021-03-05T19:25:43.4379222Z\",\r\n \"endTime\": \"2021-03-05T19:28:45.3995121Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a677cd74-216a-4e2a-8f22-6ed466dabaa8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "1ad4a4c9-9bca-4e45-bc6d-df3cfd3a2455" + ], + "x-ms-correlation-request-id": [ + "1ad4a4c9-9bca-4e45-bc6d-df3cfd3a2455" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192905Z:1ad4a4c9-9bca-4e45-bc6d-df3cfd3a2455" + ], + "Date": [ + "Fri, 05 Mar 2021 19:29:04 GMT" + ], + "Content-Length": [ + "139" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData 6a0620ee-7747-4493-9072-8f25a6e263cb_pnt could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "1d6e9a27-5fe7-450c-9208-764ab8984cb5" + ], + "x-ms-correlation-request-id": [ + "1d6e9a27-5fe7-450c-9208-764ab8984cb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193728Z:1d6e9a27-5fe7-450c-9208-764ab8984cb5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:37:27 GMT" + ], + "Content-Length": [ + "697" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRDbHVzdGVycy9zZm1jcHMtcHM4MjE3L25vZGVUeXBlcy9wbnQ/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91605b8e-82f1-4278-afb1-54c41f88927d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "299" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "9a44df60-0350-46f5-a9c8-9df9599c1d37" + ], + "x-ms-correlation-request-id": [ + "9a44df60-0350-46f5-a9c8-9df9599c1d37" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192905Z:9a44df60-0350-46f5-a9c8-9df9599c1d37" + ], + "Date": [ + "Fri, 05 Mar 2021 19:29:05 GMT" + ], + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "a1c18069-d4c2-441f-8026-3187027d3e40" + ], + "x-ms-correlation-request-id": [ + "a1c18069-d4c2-441f-8026-3187027d3e40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192925Z:a1c18069-d4c2-441f-8026-3187027d3e40" + ], + "Date": [ + "Fri, 05 Mar 2021 19:29:25 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "529a9100-0645-43a8-bfa8-b9a5a38afea9" + ], + "x-ms-correlation-request-id": [ + "529a9100-0645-43a8-bfa8-b9a5a38afea9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T192945Z:529a9100-0645-43a8-bfa8-b9a5a38afea9" + ], + "Date": [ + "Fri, 05 Mar 2021 19:29:44 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "1906c6a9-b970-420d-a74c-fac78d8c87c5" + ], + "x-ms-correlation-request-id": [ + "1906c6a9-b970-420d-a74c-fac78d8c87c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193006Z:1906c6a9-b970-420d-a74c-fac78d8c87c5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:30:05 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "815328d3-b971-4fbd-8ae1-12b106dee5df" + ], + "x-ms-correlation-request-id": [ + "815328d3-b971-4fbd-8ae1-12b106dee5df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193026Z:815328d3-b971-4fbd-8ae1-12b106dee5df" + ], + "Date": [ + "Fri, 05 Mar 2021 19:30:25 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "9557b7b1-6cc0-4db4-8b6e-ad7f563f1459" + ], + "x-ms-correlation-request-id": [ + "9557b7b1-6cc0-4db4-8b6e-ad7f563f1459" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193046Z:9557b7b1-6cc0-4db4-8b6e-ad7f563f1459" + ], + "Date": [ + "Fri, 05 Mar 2021 19:30:45 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "437bb5bb-6092-4a4d-9711-d9a3b5268b30" + ], + "x-ms-correlation-request-id": [ + "437bb5bb-6092-4a4d-9711-d9a3b5268b30" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193106Z:437bb5bb-6092-4a4d-9711-d9a3b5268b30" + ], + "Date": [ + "Fri, 05 Mar 2021 19:31:05 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "ecfb1478-4504-40ef-bb32-685efd2cc37b" + ], + "x-ms-correlation-request-id": [ + "ecfb1478-4504-40ef-bb32-685efd2cc37b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193126Z:ecfb1478-4504-40ef-bb32-685efd2cc37b" + ], + "Date": [ + "Fri, 05 Mar 2021 19:31:26 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "f0b7188b-4c2c-428c-ae81-474e08db823f" + ], + "x-ms-correlation-request-id": [ + "f0b7188b-4c2c-428c-ae81-474e08db823f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193146Z:f0b7188b-4c2c-428c-ae81-474e08db823f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:31:46 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "a11c12fd-e15b-4a38-9e5d-abe0503d967c" + ], + "x-ms-correlation-request-id": [ + "a11c12fd-e15b-4a38-9e5d-abe0503d967c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193206Z:a11c12fd-e15b-4a38-9e5d-abe0503d967c" + ], + "Date": [ + "Fri, 05 Mar 2021 19:32:06 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "47c21087-2834-4823-bf01-e6c66be1554b" + ], + "x-ms-correlation-request-id": [ + "47c21087-2834-4823-bf01-e6c66be1554b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193226Z:47c21087-2834-4823-bf01-e6c66be1554b" + ], + "Date": [ + "Fri, 05 Mar 2021 19:32:26 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "a1e37b8c-6e2c-4b27-ba21-de7543121200" + ], + "x-ms-correlation-request-id": [ + "a1e37b8c-6e2c-4b27-ba21-de7543121200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193246Z:a1e37b8c-6e2c-4b27-ba21-de7543121200" + ], + "Date": [ + "Fri, 05 Mar 2021 19:32:46 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "4e66c476-cc9b-4e4f-89de-34e4ea79bd27" + ], + "x-ms-correlation-request-id": [ + "4e66c476-cc9b-4e4f-89de-34e4ea79bd27" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193307Z:4e66c476-cc9b-4e4f-89de-34e4ea79bd27" + ], + "Date": [ + "Fri, 05 Mar 2021 19:33:06 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "4a105bd5-a5e8-4403-a64f-3854bfff41f9" + ], + "x-ms-correlation-request-id": [ + "4a105bd5-a5e8-4403-a64f-3854bfff41f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193327Z:4a105bd5-a5e8-4403-a64f-3854bfff41f9" + ], + "Date": [ + "Fri, 05 Mar 2021 19:33:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "369130bd-ee27-462d-a230-1871409aea79" + ], + "x-ms-correlation-request-id": [ + "369130bd-ee27-462d-a230-1871409aea79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193347Z:369130bd-ee27-462d-a230-1871409aea79" + ], + "Date": [ + "Fri, 05 Mar 2021 19:33:46 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "acf33b60-a257-4b1b-ba24-440c8ecd1902" + ], + "x-ms-correlation-request-id": [ + "acf33b60-a257-4b1b-ba24-440c8ecd1902" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193407Z:acf33b60-a257-4b1b-ba24-440c8ecd1902" + ], + "Date": [ + "Fri, 05 Mar 2021 19:34:06 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "c4a624c8-6dce-49be-b63d-9b9e20365b57" + ], + "x-ms-correlation-request-id": [ + "c4a624c8-6dce-49be-b63d-9b9e20365b57" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193427Z:c4a624c8-6dce-49be-b63d-9b9e20365b57" + ], + "Date": [ + "Fri, 05 Mar 2021 19:34:26 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "fe550671-f3b9-47b6-9d73-39c8ab1e6486" + ], + "x-ms-correlation-request-id": [ + "fe550671-f3b9-47b6-9d73-39c8ab1e6486" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193447Z:fe550671-f3b9-47b6-9d73-39c8ab1e6486" + ], + "Date": [ + "Fri, 05 Mar 2021 19:34:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "a695e335-a66e-4c1a-8400-a42a4d916f49" + ], + "x-ms-correlation-request-id": [ + "a695e335-a66e-4c1a-8400-a42a4d916f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193507Z:a695e335-a66e-4c1a-8400-a42a4d916f49" + ], + "Date": [ + "Fri, 05 Mar 2021 19:35:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "ebd841d2-a4a3-4b53-b5db-3c525408e4d2" + ], + "x-ms-correlation-request-id": [ + "ebd841d2-a4a3-4b53-b5db-3c525408e4d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193527Z:ebd841d2-a4a3-4b53-b5db-3c525408e4d2" + ], + "Date": [ + "Fri, 05 Mar 2021 19:35:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "8659de89-1855-49ee-a57a-be9901d40fd0" + ], + "x-ms-correlation-request-id": [ + "8659de89-1855-49ee-a57a-be9901d40fd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193547Z:8659de89-1855-49ee-a57a-be9901d40fd0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:35:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "ccbaa0e3-dd2f-48b2-a75e-332f495fb291" + ], + "x-ms-correlation-request-id": [ + "ccbaa0e3-dd2f-48b2-a75e-332f495fb291" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193607Z:ccbaa0e3-dd2f-48b2-a75e-332f495fb291" + ], + "Date": [ + "Fri, 05 Mar 2021 19:36:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "00600e94-0af8-4423-8448-02162079cdae" + ], + "x-ms-correlation-request-id": [ + "00600e94-0af8-4423-8448-02162079cdae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193627Z:00600e94-0af8-4423-8448-02162079cdae" + ], + "Date": [ + "Fri, 05 Mar 2021 19:36:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4d5a8ec7-6097-4c55-8845-83326a981485" + ], + "x-ms-correlation-request-id": [ + "4d5a8ec7-6097-4c55-8845-83326a981485" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193648Z:4d5a8ec7-6097-4c55-8845-83326a981485" + ], + "Date": [ + "Fri, 05 Mar 2021 19:36:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "39d4f3d5-29dc-4dd1-992c-c1a21bb47d37" + ], + "x-ms-correlation-request-id": [ + "39d4f3d5-29dc-4dd1-992c-c1a21bb47d37" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193708Z:39d4f3d5-29dc-4dd1-992c-c1a21bb47d37" + ], + "Date": [ + "Fri, 05 Mar 2021 19:37:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/97f00004-124f-439e-a952-f15e10ca0ee6?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk3ZjAwMDA0LTEyNGYtNDM5ZS1hOTUyLWYxNWUxMGNhMGVlNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "19cb113d-e8af-4a38-b497-ae0a1af74aaa" + ], + "x-ms-correlation-request-id": [ + "19cb113d-e8af-4a38-b497-ae0a1af74aaa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T193728Z:19cb113d-e8af-4a38-b497-ae0a1af74aaa" + ], + "Date": [ + "Fri, 05 Mar 2021 19:37:27 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"97f00004-124f-439e-a952-f15e10ca0ee6\",\r\n \"startTime\": \"2021-03-05T19:29:05.6244859Z\",\r\n \"endTime\": \"2021-03-05T19:37:08.8028351Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "369601cc-2f01-4564-a650-8ccaafdfe2f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "365498dd-2136-46ec-899f-51423663b26a" + ], + "x-ms-correlation-request-id": [ + "365498dd-2136-46ec-899f-51423663b26a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194253Z:365498dd-2136-46ec-899f-51423663b26a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:52 GMT" + ], + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "7a670eca-17c0-473c-a604-72f1d42fa6a7" + ], + "x-ms-correlation-request-id": [ + "7a670eca-17c0-473c-a604-72f1d42fa6a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194253Z:7a670eca-17c0-473c-a604-72f1d42fa6a7" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:53 GMT" + ], + "Content-Length": [ + "153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeData 6a0620ee-7747-4493-9072-8f25a6e263cb&votingtype could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "3b243407-aaca-4742-969b-198a46a87746" + ], + "x-ms-correlation-request-id": [ + "3b243407-aaca-4742-969b-198a46a87746" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194253Z:3b243407-aaca-4742-969b-198a46a87746" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:53 GMT" + ], + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:42:53.537498-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:42:53.537498-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "e4b3943c-0a28-4cc3-a801-84dcc1fcf26e" + ], + "x-ms-correlation-request-id": [ + "e4b3943c-0a28-4cc3-a801-84dcc1fcf26e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194253Z:e4b3943c-0a28-4cc3-a801-84dcc1fcf26e" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:53 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeVersionData 6a0620ee-7747-4493-9072-8f25a6e263cb&votingtype&1.0.0 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "0cb14acf-a394-4a0f-ad17-1303d2719057" + ], + "x-ms-correlation-request-id": [ + "0cb14acf-a394-4a0f-ad17-1303d2719057" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194414Z:0cb14acf-a394-4a0f-ad17-1303d2719057" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:13 GMT" + ], + "Content-Length": [ + "853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:42:54.0275067-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:42:54.0275067-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7990e64d-e314-42b1-924e-2f907f66145c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "500d9911-4b87-49e1-8e43-a4e255f4c2fa" + ], + "x-ms-correlation-request-id": [ + "500d9911-4b87-49e1-8e43-a4e255f4c2fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194414Z:500d9911-4b87-49e1-8e43-a4e255f4c2fa" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:14 GMT" + ], + "Content-Length": [ + "853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:42:54.0275067-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:42:54.0275067-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36aebba3-860c-4e83-b122-fee9072b658b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "ba34e3a0-9d36-4e3b-afa3-616e3a85e22a" + ], + "x-ms-correlation-request-id": [ + "ba34e3a0-9d36-4e3b-afa3-616e3a85e22a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194415Z:ba34e3a0-9d36-4e3b-afa3-616e3a85e22a" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:14 GMT" + ], + "Content-Length": [ + "891" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:44:15.0559408-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:44:15.0559408-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13d9b891-4d19-471b-94c9-936ed59e41c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "285b923d-e136-42f9-974b-aaa50def1439" + ], + "x-ms-correlation-request-id": [ + "285b923d-e136-42f9-974b-aaa50def1439" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194436Z:285b923d-e136-42f9-974b-aaa50def1439" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/83420004-416a-4280-82a9-532ab97b883e?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/83420004-416a-4280-82a9-532ab97b883e?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "16ac7d77-1ad1-40cb-8b68-6a77e451a2ac" + ], + "x-ms-correlation-request-id": [ + "16ac7d77-1ad1-40cb-8b68-6a77e451a2ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194254Z:16ac7d77-1ad1-40cb-8b68-6a77e451a2ac" + ], + "Date": [ + "Fri, 05 Mar 2021 19:42:53 GMT" + ], + "Content-Length": [ + "852" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:42:54.0275067-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:42:54.0275067-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4c1952d-fc39-4969-a101-143df1d658fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "210" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "56a47235-4cdd-4bbb-b12e-c21d37dd28d1" + ], + "x-ms-correlation-request-id": [ + "56a47235-4cdd-4bbb-b12e-c21d37dd28d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194415Z:56a47235-4cdd-4bbb-b12e-c21d37dd28d1" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:14 GMT" + ], + "Content-Length": [ + "891" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:44:15.0559408-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:44:15.0559408-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/83420004-416a-4280-82a9-532ab97b883e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzNDIwMDA0LTQxNmEtNDI4MC04MmE5LTUzMmFiOTdiODgzZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "d4f33dc3-d33e-4a71-8ccf-5708087bac9c" + ], + "x-ms-correlation-request-id": [ + "d4f33dc3-d33e-4a71-8ccf-5708087bac9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194314Z:d4f33dc3-d33e-4a71-8ccf-5708087bac9c" + ], + "Date": [ + "Fri, 05 Mar 2021 19:43:13 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"83420004-416a-4280-82a9-532ab97b883e\",\r\n \"startTime\": \"2021-03-05T19:42:54.072027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/83420004-416a-4280-82a9-532ab97b883e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzNDIwMDA0LTQxNmEtNDI4MC04MmE5LTUzMmFiOTdiODgzZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-request-id": [ + "b272809c-6ab1-412b-b68d-6fef65a9d9ba" + ], + "x-ms-correlation-request-id": [ + "b272809c-6ab1-412b-b68d-6fef65a9d9ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194334Z:b272809c-6ab1-412b-b68d-6fef65a9d9ba" + ], + "Date": [ + "Fri, 05 Mar 2021 19:43:33 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"83420004-416a-4280-82a9-532ab97b883e\",\r\n \"startTime\": \"2021-03-05T19:42:54.072027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/83420004-416a-4280-82a9-532ab97b883e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzNDIwMDA0LTQxNmEtNDI4MC04MmE5LTUzMmFiOTdiODgzZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "99d97b68-d431-4b17-9f7a-adc5d4a7f704" + ], + "x-ms-correlation-request-id": [ + "99d97b68-d431-4b17-9f7a-adc5d4a7f704" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194354Z:99d97b68-d431-4b17-9f7a-adc5d4a7f704" + ], + "Date": [ + "Fri, 05 Mar 2021 19:43:53 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"83420004-416a-4280-82a9-532ab97b883e\",\r\n \"startTime\": \"2021-03-05T19:42:54.072027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/83420004-416a-4280-82a9-532ab97b883e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzgzNDIwMDA0LTQxNmEtNDI4MC04MmE5LTUzMmFiOTdiODgzZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ccb470c-25e2-4e8b-9407-da40506c7435" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "41d9b526-4fa7-48ea-80b0-44b8c7a03267" + ], + "x-ms-correlation-request-id": [ + "41d9b526-4fa7-48ea-80b0-44b8c7a03267" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194414Z:41d9b526-4fa7-48ea-80b0-44b8c7a03267" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:13 GMT" + ], + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"83420004-416a-4280-82a9-532ab97b883e\",\r\n \"startTime\": \"2021-03-05T19:42:54.072027Z\",\r\n \"endTime\": \"2021-03-05T19:44:04.4649038Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c237bd9e-5e1c-40e5-8a3f-ffa33170ea72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/96b00004-3705-4c17-a73c-d7ff92466242?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/96b00004-3705-4c17-a73c-d7ff92466242?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "017e8e59-2c41-4749-835c-c92869430ed5" + ], + "x-ms-correlation-request-id": [ + "017e8e59-2c41-4749-835c-c92869430ed5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194415Z:017e8e59-2c41-4749-835c-c92869430ed5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:14 GMT" + ], + "Content-Length": [ + "890" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps8217/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"tags\": {\r\n \"test\": \"tag\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T11:44:15.0559408-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T11:44:15.0559408-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/96b00004-3705-4c17-a73c-d7ff92466242?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzk2YjAwMDA0LTM3MDUtNGMxNy1hNzNjLWQ3ZmY5MjQ2NjI0Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c237bd9e-5e1c-40e5-8a3f-ffa33170ea72" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "b6cae497-bac2-4d74-b146-dd8bfcab3547" + ], + "x-ms-correlation-request-id": [ + "b6cae497-bac2-4d74-b146-dd8bfcab3547" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194435Z:b6cae497-bac2-4d74-b146-dd8bfcab3547" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:35 GMT" + ], + "Content-Length": [ + "201" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"96b00004-3705-4c17-a73c-d7ff92466242\",\r\n \"startTime\": \"2021-03-05T19:44:15.43425Z\",\r\n \"endTime\": \"2021-03-05T19:44:25.5469524Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/96b00004-3705-4c17-a73c-d7ff92466242?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzk2YjAwMDA0LTM3MDUtNGMxNy1hNzNjLWQ3ZmY5MjQ2NjI0Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c237bd9e-5e1c-40e5-8a3f-ffa33170ea72" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "146cb22a-e023-41ac-bf08-0854185d3446" + ], + "x-ms-correlation-request-id": [ + "146cb22a-e023-41ac-bf08-0854185d3446" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194435Z:146cb22a-e023-41ac-bf08-0854185d3446" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:35 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps1128/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps8217/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczExMjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL21hbmFnZWRjbHVzdGVycy9zZm1jcHMtcHM4MjE3L2FwcGxpY2F0aW9uVHlwZXMvVm90aW5nVHlwZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c235ffc3-e824-4188-a550-8dfe2f2ed547" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "69ba9e1e-328b-45a1-86a5-95c6987923c6" + ], + "x-ms-correlation-request-id": [ + "69ba9e1e-328b-45a1-86a5-95c6987923c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194435Z:69ba9e1e-328b-45a1-86a5-95c6987923c6" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:35 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "Test-ManagedAppTypeVersion": [ + "ps1128", + "ps8217" + ] + }, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedService.json b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedService.json new file mode 100644 index 000000000000..4f5b6e8493f3 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric.Test/SessionRecords/Microsoft.Azure.Commands.ServiceFabric.Test.ScenarioTests.ServiceFabricManagedClustersApplicationTests/TestManagedService.json @@ -0,0 +1,6796 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec845ae6-65ba-4f01-9acd-5c9409800a09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1d9da1c4-6969-4698-a28b-e5bf17dfb515" + ], + "x-ms-correlation-request-id": [ + "1d9da1c4-6969-4698-a28b-e5bf17dfb515" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194440Z:1d9da1c4-6969-4698-a28b-e5bf17dfb515" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "106" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps74' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b96b7b6f-363f-4b56-ac89-cdceb59020c3" + ], + "x-ms-correlation-request-id": [ + "b96b7b6f-363f-4b56-ac89-cdceb59020c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194440Z:b96b7b6f-363f-4b56-ac89-cdceb59020c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "106" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps74' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "b43c0972-a2eb-4606-804d-07035668154f" + ], + "x-ms-correlation-request-id": [ + "b43c0972-a2eb-4606-804d-07035668154f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194745Z:b43c0972-a2eb-4606-804d-07035668154f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:47:45 GMT" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3eb7f36f-f672-4061-a9e5-43d03ab8e972" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "3c698602-f0ed-48d6-8c32-40827f1dfb92" + ], + "x-ms-correlation-request-id": [ + "3c698602-f0ed-48d6-8c32-40827f1dfb92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195516Z:3c698602-f0ed-48d6-8c32-40827f1dfb92" + ], + "Date": [ + "Fri, 05 Mar 2021 19:55:16 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba75ca6a-5278-430e-93be-f4ecf2d5e903" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "7db8324b-c68a-49a1-8f0e-1266ca812374" + ], + "x-ms-correlation-request-id": [ + "7db8324b-c68a-49a1-8f0e-1266ca812374" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195531Z:7db8324b-c68a-49a1-8f0e-1266ca812374" + ], + "Date": [ + "Fri, 05 Mar 2021 19:55:31 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dc87e6a-f4f1-486c-a83f-310d05875ce1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "3ce30074-43ba-4dd8-8d38-4ed3ea472570" + ], + "x-ms-correlation-request-id": [ + "3ce30074-43ba-4dd8-8d38-4ed3ea472570" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195546Z:3ce30074-43ba-4dd8-8d38-4ed3ea472570" + ], + "Date": [ + "Fri, 05 Mar 2021 19:55:46 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5617f841-296e-4611-96a6-79858bfda1fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "5f449ae0-75cc-40fd-b34e-49049a0493d3" + ], + "x-ms-correlation-request-id": [ + "5f449ae0-75cc-40fd-b34e-49049a0493d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195601Z:5f449ae0-75cc-40fd-b34e-49049a0493d3" + ], + "Date": [ + "Fri, 05 Mar 2021 19:56:01 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff734ab5-35cf-48a1-95ab-06d9a72590b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "f53c4223-ba8b-4835-bf6f-3e893adca8ff" + ], + "x-ms-correlation-request-id": [ + "f53c4223-ba8b-4835-bf6f-3e893adca8ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195616Z:f53c4223-ba8b-4835-bf6f-3e893adca8ff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:56:16 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14b64c3c-7f65-4dba-ad4a-2e64e8370661" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "95d013d9-dd31-4e3b-bd73-523423b30087" + ], + "x-ms-correlation-request-id": [ + "95d013d9-dd31-4e3b-bd73-523423b30087" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195631Z:95d013d9-dd31-4e3b-bd73-523423b30087" + ], + "Date": [ + "Fri, 05 Mar 2021 19:56:31 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a35dc581-d143-4e04-b52c-d15321f7490e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "1a6ae685-8de9-49de-be63-dee1dbc28fa4" + ], + "x-ms-correlation-request-id": [ + "1a6ae685-8de9-49de-be63-dee1dbc28fa4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195646Z:1a6ae685-8de9-49de-be63-dee1dbc28fa4" + ], + "Date": [ + "Fri, 05 Mar 2021 19:56:46 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91583da2-d84f-4871-8c2f-1ffefa1876b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "a59bc2c5-c6b7-4b94-be4e-5fa20f6c24ba" + ], + "x-ms-correlation-request-id": [ + "a59bc2c5-c6b7-4b94-be4e-5fa20f6c24ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195702Z:a59bc2c5-c6b7-4b94-be4e-5fa20f6c24ba" + ], + "Date": [ + "Fri, 05 Mar 2021 19:57:02 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d8cbac0-3f78-44d2-98fa-4ce1a006bbc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "dad80327-bbfe-4600-a69b-54a13e6b89d4" + ], + "x-ms-correlation-request-id": [ + "dad80327-bbfe-4600-a69b-54a13e6b89d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195717Z:dad80327-bbfe-4600-a69b-54a13e6b89d4" + ], + "Date": [ + "Fri, 05 Mar 2021 19:57:17 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "911a5e97-0664-4484-9f7c-f3704d13039b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "54e39823-9b54-42ea-bdd9-872a9fc811d7" + ], + "x-ms-correlation-request-id": [ + "54e39823-9b54-42ea-bdd9-872a9fc811d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195732Z:54e39823-9b54-42ea-bdd9-872a9fc811d7" + ], + "Date": [ + "Fri, 05 Mar 2021 19:57:31 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49c55f38-f3a4-4d1f-a60d-48816c471d7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "cb9c72ce-15e7-448d-a8ad-878437993934" + ], + "x-ms-correlation-request-id": [ + "cb9c72ce-15e7-448d-a8ad-878437993934" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195747Z:cb9c72ce-15e7-448d-a8ad-878437993934" + ], + "Date": [ + "Fri, 05 Mar 2021 19:57:46 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f44a4144-ffa8-4e42-9f84-e845f31e53ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "78d6952d-206d-460c-82f6-b24c8a8ec050" + ], + "x-ms-correlation-request-id": [ + "78d6952d-206d-460c-82f6-b24c8a8ec050" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195802Z:78d6952d-206d-460c-82f6-b24c8a8ec050" + ], + "Date": [ + "Fri, 05 Mar 2021 19:58:01 GMT" + ], + "Content-Length": [ + "1146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Deploying\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8ecce44-6c1c-4c2f-b371-33f2da98641d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "5e5f0f3e-40dc-4006-8912-7b3e62f7e507" + ], + "x-ms-correlation-request-id": [ + "5e5f0f3e-40dc-4006-8912-7b3e62f7e507" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195817Z:5e5f0f3e-40dc-4006-8912-7b3e62f7e507" + ], + "Date": [ + "Fri, 05 Mar 2021 19:58:16 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99c7c6aa-c032-49f8-bd64-9775aa43ff61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "37e4ea0b-a089-4c46-a5d6-e9c20711c58f" + ], + "x-ms-correlation-request-id": [ + "37e4ea0b-a089-4c46-a5d6-e9c20711c58f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195832Z:37e4ea0b-a089-4c46-a5d6-e9c20711c58f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:58:31 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6163a534-32a2-44fe-a8f7-baf6a76ab267" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "6471228b-97e5-41c3-b681-20716a3d2262" + ], + "x-ms-correlation-request-id": [ + "6471228b-97e5-41c3-b681-20716a3d2262" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195847Z:6471228b-97e5-41c3-b681-20716a3d2262" + ], + "Date": [ + "Fri, 05 Mar 2021 19:58:46 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "124111c5-856d-42e5-9103-25813f903b6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "d805b18d-2fcd-4487-b9e2-0a895ddea017" + ], + "x-ms-correlation-request-id": [ + "d805b18d-2fcd-4487-b9e2-0a895ddea017" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195902Z:d805b18d-2fcd-4487-b9e2-0a895ddea017" + ], + "Date": [ + "Fri, 05 Mar 2021 19:59:02 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b867e58a-5dbc-4e3b-ad48-6bd311fdde55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "40469693-ccfc-4cc1-a9bc-825bf4a19726" + ], + "x-ms-correlation-request-id": [ + "40469693-ccfc-4cc1-a9bc-825bf4a19726" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195917Z:40469693-ccfc-4cc1-a9bc-825bf4a19726" + ], + "Date": [ + "Fri, 05 Mar 2021 19:59:17 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d45bce91-7a08-4e3b-b26b-f9e73ffdc2ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2f4a00d8-d1cf-4d22-8546-c0de3e3a14a5" + ], + "x-ms-correlation-request-id": [ + "2f4a00d8-d1cf-4d22-8546-c0de3e3a14a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195933Z:2f4a00d8-d1cf-4d22-8546-c0de3e3a14a5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:59:32 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64c2f815-2645-4e39-b974-66760bbaae10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "05014a2f-ba42-4c1f-aa76-118c832966b0" + ], + "x-ms-correlation-request-id": [ + "05014a2f-ba42-4c1f-aa76-118c832966b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195948Z:05014a2f-ba42-4c1f-aa76-118c832966b0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:59:47 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57f1b511-2932-473e-88be-e1a15847642f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "91d6c16c-5886-4627-bb35-3f23aaee3aed" + ], + "x-ms-correlation-request-id": [ + "91d6c16c-5886-4627-bb35-3f23aaee3aed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200003Z:91d6c16c-5886-4627-bb35-3f23aaee3aed" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:02 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a2db6e8-f7e5-416d-a2ad-d473b1add57d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "8f46edd3-fc61-440d-9f29-cea462c2425b" + ], + "x-ms-correlation-request-id": [ + "8f46edd3-fc61-440d-9f29-cea462c2425b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200018Z:8f46edd3-fc61-440d-9f29-cea462c2425b" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:17 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4919f94-8370-4c77-81f4-a301b42c0c2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "8e1e9ec1-d845-446d-ae9f-8fc6595e58cc" + ], + "x-ms-correlation-request-id": [ + "8e1e9ec1-d845-446d-ae9f-8fc6595e58cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200033Z:8e1e9ec1-d845-446d-ae9f-8fc6595e58cc" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:32 GMT" + ], + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d4f5a61-7fa8-41f8-9292-bfff70272444" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "7dbd1c08-c6ef-458e-9aa8-9afaec3de8ff" + ], + "x-ms-correlation-request-id": [ + "7dbd1c08-c6ef-458e-9aa8-9afaec3de8ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200048Z:7dbd1c08-c6ef-458e-9aa8-9afaec3de8ff" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:47 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "bb6de279-1dd3-45ff-8fb7-89b87715e593" + ], + "x-ms-correlation-request-id": [ + "bb6de279-1dd3-45ff-8fb7-89b87715e593" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200048Z:bb6de279-1dd3-45ff-8fb7-89b87715e593" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:48 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe9c2e31-3033-4c27-9747-fff4a42f3a4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-request-id": [ + "f79132f4-563d-4d0b-a128-452f6493723d" + ], + "x-ms-correlation-request-id": [ + "f79132f4-563d-4d0b-a128-452f6493723d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200231Z:f79132f4-563d-4d0b-a128-452f6493723d" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:31 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ca2349-cfeb-47db-885a-31c110f56aaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "6748774d-62e0-46fe-94b1-8031a568fc0e" + ], + "x-ms-correlation-request-id": [ + "6748774d-62e0-46fe-94b1-8031a568fc0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200252Z:6748774d-62e0-46fe-94b1-8031a568fc0e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:52 GMT" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterCodeVersion\": \"7.2.477.9590\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"fqdn\": \"sfmcps-ps9754.southcentralus.cloudapp.azure.com\",\r\n \"ipv4Address\": \"52.185.225.203\",\r\n \"clusterCertificateThumbprints\": [\r\n \"71E02B1B97DE7FB08027E871A6F6C834E53310FC\"\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "3334adae-b7be-4ef6-9ac1-a325155876d1" + ], + "x-ms-correlation-request-id": [ + "3334adae-b7be-4ef6-9ac1-a325155876d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194441Z:3334adae-b7be-4ef6-9ac1-a325155876d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "106" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'sfmcps-rg-ps74' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3NmbWNwcy1yZy1wczc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0eceb3e3-5a1b-46f2-8686-662205c19128" + ], + "x-ms-correlation-request-id": [ + "0eceb3e3-5a1b-46f2-8686-662205c19128" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194441Z:0eceb3e3-5a1b-46f2-8686-662205c19128" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:41 GMT" + ], + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74\",\r\n \"name\": \"sfmcps-rg-ps74\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1ND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"adminUserName\": \"vmadmin\",\r\n \"adminPassword\": \"TestPass1234!@#\",\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "01a7990f-410b-4eb7-9ffa-b3a24d7ed5a0" + ], + "x-ms-correlation-request-id": [ + "01a7990f-410b-4eb7-9ffa-b3a24d7ed5a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194444Z:01a7990f-410b-4eb7-9ffa-b3a24d7ed5a0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:44:44 GMT" + ], + "Content-Length": [ + "928" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"sfmcps-ps9754\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"clusterId\": \"05e40eba-0ec6-41bd-b7af-8fc1a433ce3f\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfmcps-ps9754\",\r\n \"clusterCertificateThumbprints\": [\r\n null\r\n ],\r\n \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"allowRdpAccess\": false,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n ],\r\n \"enableAutoOSUpgrade\": false,\r\n \"zonalResiliency\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "cc86848a-7255-40ba-a0f9-920ca335ecf0" + ], + "x-ms-correlation-request-id": [ + "cc86848a-7255-40ba-a0f9-920ca335ecf0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194505Z:cc86848a-7255-40ba-a0f9-920ca335ecf0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:45:04 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "f46fe494-971a-43f0-b1f6-a90dfd2f6a0b" + ], + "x-ms-correlation-request-id": [ + "f46fe494-971a-43f0-b1f6-a90dfd2f6a0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194525Z:f46fe494-971a-43f0-b1f6-a90dfd2f6a0b" + ], + "Date": [ + "Fri, 05 Mar 2021 19:45:25 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "ed91f32d-caae-47fe-838f-c5fcf8e82675" + ], + "x-ms-correlation-request-id": [ + "ed91f32d-caae-47fe-838f-c5fcf8e82675" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194545Z:ed91f32d-caae-47fe-838f-c5fcf8e82675" + ], + "Date": [ + "Fri, 05 Mar 2021 19:45:44 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "7474dfdf-98f4-4aeb-8761-f508d7dd8e57" + ], + "x-ms-correlation-request-id": [ + "7474dfdf-98f4-4aeb-8761-f508d7dd8e57" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194605Z:7474dfdf-98f4-4aeb-8761-f508d7dd8e57" + ], + "Date": [ + "Fri, 05 Mar 2021 19:46:04 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "3f90ff2e-67d8-4de8-95c0-e9ebed1775d2" + ], + "x-ms-correlation-request-id": [ + "3f90ff2e-67d8-4de8-95c0-e9ebed1775d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194625Z:3f90ff2e-67d8-4de8-95c0-e9ebed1775d2" + ], + "Date": [ + "Fri, 05 Mar 2021 19:46:24 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "9f794393-2cbd-4f23-aa24-6506d1a61f8f" + ], + "x-ms-correlation-request-id": [ + "9f794393-2cbd-4f23-aa24-6506d1a61f8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194645Z:9f794393-2cbd-4f23-aa24-6506d1a61f8f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:46:44 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "6740e388-0f83-4481-bada-54e3a4a21311" + ], + "x-ms-correlation-request-id": [ + "6740e388-0f83-4481-bada-54e3a4a21311" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194705Z:6740e388-0f83-4481-bada-54e3a4a21311" + ], + "Date": [ + "Fri, 05 Mar 2021 19:47:05 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 40.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "20af13ee-3292-4af9-b072-aac7db0e265e" + ], + "x-ms-correlation-request-id": [ + "20af13ee-3292-4af9-b072-aac7db0e265e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194725Z:20af13ee-3292-4af9-b072-aac7db0e265e" + ], + "Date": [ + "Fri, 05 Mar 2021 19:47:25 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 51.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/4bad0003-2582-4fac-bca8-59e08d164ef3?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzRiYWQwMDAzLTI1ODItNGZhYy1iY2E4LTU5ZTA4ZDE2NGVmMz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f330991-44e9-4def-a9ce-bbe8bd807362" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "509cf9d9-044e-4d11-b9e6-ed1b78ede928" + ], + "x-ms-correlation-request-id": [ + "509cf9d9-044e-4d11-b9e6-ed1b78ede928" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194745Z:509cf9d9-044e-4d11-b9e6-ed1b78ede928" + ], + "Date": [ + "Fri, 05 Mar 2021 19:47:45 GMT" + ], + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4bad0003-2582-4fac-bca8-59e08d164ef3\",\r\n \"startTime\": \"2021-03-05T19:44:44.416824Z\",\r\n \"endTime\": \"2021-03-05T19:47:43.9483354Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9ub2RlVHlwZXMvcG50P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f002d4f-1861-433d-b94e-2dffb823c1f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "49fdf1fd-d6f3-43d8-a369-ebb001067e67" + ], + "x-ms-correlation-request-id": [ + "49fdf1fd-d6f3-43d8-a369-ebb001067e67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194745Z:49fdf1fd-d6f3-43d8-a369-ebb001067e67" + ], + "Date": [ + "Fri, 05 Mar 2021 19:47:45 GMT" + ], + "Content-Length": [ + "139" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the NodeTypeData 05e40eba-0ec6-41bd-b7af-8fc1a433ce3f_pnt could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9ub2RlVHlwZXMvcG50P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "c5a63ce0-28f1-42ac-85a7-37e376f30b20" + ], + "x-ms-correlation-request-id": [ + "c5a63ce0-28f1-42ac-85a7-37e376f30b20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195508Z:c5a63ce0-28f1-42ac-85a7-37e376f30b20" + ], + "Date": [ + "Fri, 05 Mar 2021 19:55:07 GMT" + ], + "Content-Length": [ + "695" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/nodeTypes/pnt?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkQ2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9ub2RlVHlwZXMvcG50P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a8fa9d2-7205-46f5-a0f3-687f632aca35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "299" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "ee0b4440-fa08-4f00-a814-f7b8f46a5442" + ], + "x-ms-correlation-request-id": [ + "ee0b4440-fa08-4f00-a814-f7b8f46a5442" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194746Z:ee0b4440-fa08-4f00-a814-f7b8f46a5442" + ], + "Date": [ + "Fri, 05 Mar 2021 19:47:45 GMT" + ], + "Content-Length": [ + "694" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/nodetypes/pnt\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2_v2\",\r\n \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n \"capacities\": {}\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "a7115491-1587-413b-a7d6-cacc63e0ea12" + ], + "x-ms-correlation-request-id": [ + "a7115491-1587-413b-a7d6-cacc63e0ea12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194806Z:a7115491-1587-413b-a7d6-cacc63e0ea12" + ], + "Date": [ + "Fri, 05 Mar 2021 19:48:05 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 30.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "bd1791dc-f668-45f5-89e1-6abed1c203e0" + ], + "x-ms-correlation-request-id": [ + "bd1791dc-f668-45f5-89e1-6abed1c203e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194826Z:bd1791dc-f668-45f5-89e1-6abed1c203e0" + ], + "Date": [ + "Fri, 05 Mar 2021 19:48:25 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "602e71ac-85d7-4944-963a-6e4ff3d5d88f" + ], + "x-ms-correlation-request-id": [ + "602e71ac-85d7-4944-963a-6e4ff3d5d88f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194846Z:602e71ac-85d7-4944-963a-6e4ff3d5d88f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:48:46 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "47e52488-8a04-4b31-90b8-41fc4462baa5" + ], + "x-ms-correlation-request-id": [ + "47e52488-8a04-4b31-90b8-41fc4462baa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194906Z:47e52488-8a04-4b31-90b8-41fc4462baa5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:49:06 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f442b1f9-7cf6-40d1-b5b4-0d03aa3913be" + ], + "x-ms-correlation-request-id": [ + "f442b1f9-7cf6-40d1-b5b4-0d03aa3913be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194926Z:f442b1f9-7cf6-40d1-b5b4-0d03aa3913be" + ], + "Date": [ + "Fri, 05 Mar 2021 19:49:26 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "787f2a99-27b3-4cf1-80d9-b4f59f0608fd" + ], + "x-ms-correlation-request-id": [ + "787f2a99-27b3-4cf1-80d9-b4f59f0608fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T194947Z:787f2a99-27b3-4cf1-80d9-b4f59f0608fd" + ], + "Date": [ + "Fri, 05 Mar 2021 19:49:46 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "0b01c0d3-9ade-482e-ba12-4d7ad0d8e2ad" + ], + "x-ms-correlation-request-id": [ + "0b01c0d3-9ade-482e-ba12-4d7ad0d8e2ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195007Z:0b01c0d3-9ade-482e-ba12-4d7ad0d8e2ad" + ], + "Date": [ + "Fri, 05 Mar 2021 19:50:06 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "131bb58a-cbd8-4c3c-bc27-0fd0d6d525c4" + ], + "x-ms-correlation-request-id": [ + "131bb58a-cbd8-4c3c-bc27-0fd0d6d525c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195027Z:131bb58a-cbd8-4c3c-bc27-0fd0d6d525c4" + ], + "Date": [ + "Fri, 05 Mar 2021 19:50:26 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "d60d4334-3d45-4865-8fed-3072ae569b4d" + ], + "x-ms-correlation-request-id": [ + "d60d4334-3d45-4865-8fed-3072ae569b4d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195047Z:d60d4334-3d45-4865-8fed-3072ae569b4d" + ], + "Date": [ + "Fri, 05 Mar 2021 19:50:46 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "9a8004ae-aa73-46f5-84fe-71460fdc2bd8" + ], + "x-ms-correlation-request-id": [ + "9a8004ae-aa73-46f5-84fe-71460fdc2bd8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195107Z:9a8004ae-aa73-46f5-84fe-71460fdc2bd8" + ], + "Date": [ + "Fri, 05 Mar 2021 19:51:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "ad7d2a4a-456a-4061-9f86-7e7e3e7ec0f5" + ], + "x-ms-correlation-request-id": [ + "ad7d2a4a-456a-4061-9f86-7e7e3e7ec0f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195127Z:ad7d2a4a-456a-4061-9f86-7e7e3e7ec0f5" + ], + "Date": [ + "Fri, 05 Mar 2021 19:51:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "f9a6399b-8d18-4d4b-8dec-c8e648e89b52" + ], + "x-ms-correlation-request-id": [ + "f9a6399b-8d18-4d4b-8dec-c8e648e89b52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195147Z:f9a6399b-8d18-4d4b-8dec-c8e648e89b52" + ], + "Date": [ + "Fri, 05 Mar 2021 19:51:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "c876fc5a-69ea-46b1-bb32-ca6fd5bff15c" + ], + "x-ms-correlation-request-id": [ + "c876fc5a-69ea-46b1-bb32-ca6fd5bff15c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195207Z:c876fc5a-69ea-46b1-bb32-ca6fd5bff15c" + ], + "Date": [ + "Fri, 05 Mar 2021 19:52:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "a57c2c71-5bd0-4fbe-8362-6a3f2459ee84" + ], + "x-ms-correlation-request-id": [ + "a57c2c71-5bd0-4fbe-8362-6a3f2459ee84" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195227Z:a57c2c71-5bd0-4fbe-8362-6a3f2459ee84" + ], + "Date": [ + "Fri, 05 Mar 2021 19:52:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "64a90ea7-4d65-4fd5-96d2-50f3e7e60e12" + ], + "x-ms-correlation-request-id": [ + "64a90ea7-4d65-4fd5-96d2-50f3e7e60e12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195247Z:64a90ea7-4d65-4fd5-96d2-50f3e7e60e12" + ], + "Date": [ + "Fri, 05 Mar 2021 19:52:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "b6a6a188-16c9-4670-813b-30db558ca8c9" + ], + "x-ms-correlation-request-id": [ + "b6a6a188-16c9-4670-813b-30db558ca8c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195307Z:b6a6a188-16c9-4670-813b-30db558ca8c9" + ], + "Date": [ + "Fri, 05 Mar 2021 19:53:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "a89f0321-2d29-4ae3-b6da-bdce6725e953" + ], + "x-ms-correlation-request-id": [ + "a89f0321-2d29-4ae3-b6da-bdce6725e953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195328Z:a89f0321-2d29-4ae3-b6da-bdce6725e953" + ], + "Date": [ + "Fri, 05 Mar 2021 19:53:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "4373a60b-dc38-4ee3-9004-fa83078c45a7" + ], + "x-ms-correlation-request-id": [ + "4373a60b-dc38-4ee3-9004-fa83078c45a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195348Z:4373a60b-dc38-4ee3-9004-fa83078c45a7" + ], + "Date": [ + "Fri, 05 Mar 2021 19:53:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "f02d9149-2543-4807-9d5c-aa99dae0b57f" + ], + "x-ms-correlation-request-id": [ + "f02d9149-2543-4807-9d5c-aa99dae0b57f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195408Z:f02d9149-2543-4807-9d5c-aa99dae0b57f" + ], + "Date": [ + "Fri, 05 Mar 2021 19:54:07 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d1146aa7-4c2e-492d-a306-64310b11efa7" + ], + "x-ms-correlation-request-id": [ + "d1146aa7-4c2e-492d-a306-64310b11efa7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195428Z:d1146aa7-4c2e-492d-a306-64310b11efa7" + ], + "Date": [ + "Fri, 05 Mar 2021 19:54:27 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "10ded11c-faee-4d39-ad73-576a2b7592cf" + ], + "x-ms-correlation-request-id": [ + "10ded11c-faee-4d39-ad73-576a2b7592cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195448Z:10ded11c-faee-4d39-ad73-576a2b7592cf" + ], + "Date": [ + "Fri, 05 Mar 2021 19:54:47 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 50.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/07f10003-d0cd-41c2-b354-51a85999d5b2?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzA3ZjEwMDAzLWQwY2QtNDFjMi1iMzU0LTUxYTg1OTk5ZDViMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "3f24abfe-df75-470d-8664-a9ec060ed323" + ], + "x-ms-correlation-request-id": [ + "3f24abfe-df75-470d-8664-a9ec060ed323" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T195508Z:3f24abfe-df75-470d-8664-a9ec060ed323" + ], + "Date": [ + "Fri, 05 Mar 2021 19:55:07 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"07f10003-d0cd-41c2-b354-51a85999d5b2\",\r\n \"startTime\": \"2021-03-05T19:47:46.1852027Z\",\r\n \"endTime\": \"2021-03-05T19:54:49.0524993Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvblR5cGVzL1ZvdGluZ1R5cGU/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "e53f810a-aef5-4b54-92c7-bf9dbd85e2da" + ], + "x-ms-correlation-request-id": [ + "e53f810a-aef5-4b54-92c7-bf9dbd85e2da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200048Z:e53f810a-aef5-4b54-92c7-bf9dbd85e2da" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:48 GMT" + ], + "Content-Length": [ + "153" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeData 05e40eba-0ec6-41bd-b7af-8fc1a433ce3f&votingtype could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvblR5cGVzL1ZvdGluZ1R5cGU/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "00a5d037-8c7d-4711-91f9-4da20057d50c" + ], + "x-ms-correlation-request-id": [ + "00a5d037-8c7d-4711-91f9-4da20057d50c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200049Z:00a5d037-8c7d-4711-91f9-4da20057d50c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:48 GMT" + ], + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:00:49.0138209-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:00:49.0138209-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvblR5cGVzL1ZvdGluZ1R5cGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "6d533a95-5d9f-4e9e-b3bd-0c5cec6cd052" + ], + "x-ms-correlation-request-id": [ + "6d533a95-5d9f-4e9e-b3bd-0c5cec6cd052" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200049Z:6d533a95-5d9f-4e9e-b3bd-0c5cec6cd052" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:48 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationTypeVersionData 05e40eba-0ec6-41bd-b7af-8fc1a433ce3f&votingtype&1.0.0 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvblR5cGVzL1ZvdGluZ1R5cGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "704aac11-a7eb-4570-a8f2-74355b43ca75" + ], + "x-ms-correlation-request-id": [ + "704aac11-a7eb-4570-a8f2-74355b43ca75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200210Z:704aac11-a7eb-4570-a8f2-74355b43ca75" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:09 GMT" + ], + "Content-Length": [ + "851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:00:49.4788149-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:00:49.4788149-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvblR5cGVzL1ZvdGluZ1R5cGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/8c760003-3be4-48c5-a571-f12f7470895d?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8c760003-3be4-48c5-a571-f12f7470895d?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "9f8f34fb-70b2-4f52-b275-2fe7bccb5294" + ], + "x-ms-correlation-request-id": [ + "9f8f34fb-70b2-4f52-b275-2fe7bccb5294" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200049Z:9f8f34fb-70b2-4f52-b275-2fe7bccb5294" + ], + "Date": [ + "Fri, 05 Mar 2021 20:00:48 GMT" + ], + "Content-Length": [ + "850" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes/versions\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:00:49.4788149-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:00:49.4788149-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"appPackageUrl\": \"https://sfmconeboxst.blob.core.windows.net/managed-application-deployment/Voting.sfpkg\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8c760003-3be4-48c5-a571-f12f7470895d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhjNzYwMDAzLTNiZTQtNDhjNS1hNTcxLWYxMmY3NDcwODk1ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-request-id": [ + "cd59cb4e-9f20-4a0a-bfd1-c88ebcd68c29" + ], + "x-ms-correlation-request-id": [ + "cd59cb4e-9f20-4a0a-bfd1-c88ebcd68c29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200109Z:cd59cb4e-9f20-4a0a-bfd1-c88ebcd68c29" + ], + "Date": [ + "Fri, 05 Mar 2021 20:01:08 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c760003-3be4-48c5-a571-f12f7470895d\",\r\n \"startTime\": \"2021-03-05T20:00:49.5394508Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8c760003-3be4-48c5-a571-f12f7470895d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhjNzYwMDAzLTNiZTQtNDhjNS1hNTcxLWYxMmY3NDcwODk1ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "2b0e83b0-9c16-40e4-aa47-e3cc21e49b42" + ], + "x-ms-correlation-request-id": [ + "2b0e83b0-9c16-40e4-aa47-e3cc21e49b42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200129Z:2b0e83b0-9c16-40e4-aa47-e3cc21e49b42" + ], + "Date": [ + "Fri, 05 Mar 2021 20:01:28 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c760003-3be4-48c5-a571-f12f7470895d\",\r\n \"startTime\": \"2021-03-05T20:00:49.5394508Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8c760003-3be4-48c5-a571-f12f7470895d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhjNzYwMDAzLTNiZTQtNDhjNS1hNTcxLWYxMmY3NDcwODk1ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-request-id": [ + "394ab62a-0c80-4d2c-bbf8-5a54e0b65697" + ], + "x-ms-correlation-request-id": [ + "394ab62a-0c80-4d2c-bbf8-5a54e0b65697" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200149Z:394ab62a-0c80-4d2c-bbf8-5a54e0b65697" + ], + "Date": [ + "Fri, 05 Mar 2021 20:01:49 GMT" + ], + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c760003-3be4-48c5-a571-f12f7470895d\",\r\n \"startTime\": \"2021-03-05T20:00:49.5394508Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 65.0,\r\n \"status\": \"Created\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8c760003-3be4-48c5-a571-f12f7470895d?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhjNzYwMDAzLTNiZTQtNDhjNS1hNTcxLWYxMmY3NDcwODk1ZD9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "1c590c75-6e0f-44a0-b670-5acb5d4ec610" + ], + "x-ms-correlation-request-id": [ + "1c590c75-6e0f-44a0-b670-5acb5d4ec610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200210Z:1c590c75-6e0f-44a0-b670-5acb5d4ec610" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:09 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c760003-3be4-48c5-a571-f12f7470895d\",\r\n \"startTime\": \"2021-03-05T20:00:49.5394508Z\",\r\n \"endTime\": \"2021-03-05T20:02:00.0302956Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTI/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "5d02ffa0-40c8-4e9f-a295-a2ac3eca1e0f" + ], + "x-ms-correlation-request-id": [ + "5d02ffa0-40c8-4e9f-a295-a2ac3eca1e0f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200210Z:5d02ffa0-40c8-4e9f-a295-a2ac3eca1e0f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:10 GMT" + ], + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ApplicationData 05e40eba-0ec6-41bd-b7af-8fc1a433ce3f&testapp2352 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTI/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "30326783-1dae-4669-a082-f59a81412f81" + ], + "x-ms-correlation-request-id": [ + "30326783-1dae-4669-a082-f59a81412f81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200231Z:30326783-1dae-4669-a082-f59a81412f81" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:30 GMT" + ], + "Content-Length": [ + "922" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp2352\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:10.6347168-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:10.6347168-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTI/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0\"\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "268" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/a1010003-0506-4129-899b-a6380f1f535c?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a1010003-0506-4129-899b-a6380f1f535c?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "49643b00-2d0f-4a19-bfa2-479e60cf5915" + ], + "x-ms-correlation-request-id": [ + "49643b00-2d0f-4a19-bfa2-479e60cf5915" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200210Z:49643b00-2d0f-4a19-bfa2-479e60cf5915" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:10 GMT" + ], + "Content-Length": [ + "921" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp2352\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:10.6347168-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:10.6347168-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a1010003-0506-4129-899b-a6380f1f535c?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2ExMDEwMDAzLTA1MDYtNDEyOS04OTliLWE2MzgwZjFmNTM1Yz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d322aa4-2050-4783-9824-352e82bce7ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "b3796c80-05a1-49f9-84e9-b4ea6a7ba92d" + ], + "x-ms-correlation-request-id": [ + "b3796c80-05a1-49f9-84e9-b4ea6a7ba92d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200230Z:b3796c80-05a1-49f9-84e9-b4ea6a7ba92d" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:30 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a1010003-0506-4129-899b-a6380f1f535c\",\r\n \"startTime\": \"2021-03-05T20:02:10.7195805Z\",\r\n \"endTime\": \"2021-03-05T20:02:16.3291096Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXM/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d7a32e8-260e-4b2e-a7b0-40330fb797a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "5c0d69f1-0d36-4723-945a-b18e80469307" + ], + "x-ms-correlation-request-id": [ + "5c0d69f1-0d36-4723-945a-b18e80469307" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200231Z:5c0d69f1-0d36-4723-945a-b18e80469307" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:31 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe9c2e31-3033-4c27-9747-fff4a42f3a4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "1bfa3df7-4e03-4f8f-a29b-dcff035e4058" + ], + "x-ms-correlation-request-id": [ + "1bfa3df7-4e03-4f8f-a29b-dcff035e4058" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200231Z:1bfa3df7-4e03-4f8f-a29b-dcff035e4058" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:31 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ServiceData 05e40eba-0ec6-41bd-b7af-8fc1a433ce3f&testapp2352&teststatefulservice6406 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe9c2e31-3033-4c27-9747-fff4a42f3a4a" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "900a0f2a-781e-4575-8a9d-9b6969693246" + ], + "x-ms-correlation-request-id": [ + "900a0f2a-781e-4575-8a9d-9b6969693246" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200252Z:900a0f2a-781e-4575-8a9d-9b6969693246" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:51 GMT" + ], + "Content-Length": [ + "1079" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatefulService6406\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:31.881133-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:31.881133-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateful\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n },\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adeac421-4f7a-406e-92e5-8e1d7faa3f26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-request-id": [ + "afa0fbb5-5d7d-4ad2-87f1-3148456ea978" + ], + "x-ms-correlation-request-id": [ + "afa0fbb5-5d7d-4ad2-87f1-3148456ea978" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200252Z:afa0fbb5-5d7d-4ad2-87f1-3148456ea978" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:52 GMT" + ], + "Content-Length": [ + "1079" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatefulService6406\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:31.881133-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:31.881133-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateful\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n },\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7530788-3e06-4d34-a3bf-0bfaad546399" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-request-id": [ + "210b89b5-78cb-4d8a-b29d-231c16d84beb" + ], + "x-ms-correlation-request-id": [ + "210b89b5-78cb-4d8a-b29d-231c16d84beb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200334Z:210b89b5-78cb-4d8a-b29d-231c16d84beb" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:33 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatefulService6406\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:03:13.7432941-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:03:13.7432941-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateful\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n },\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2,\r\n \"replicaRestartWaitDuration\": \"00:11:00\",\r\n \"quorumLossWaitDuration\": \"00:11:00\",\r\n \"standByReplicaKeepDuration\": \"00:11:00\",\r\n \"servicePlacementTimeLimit\": \"00:11:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "910f6b96-6357-4278-856e-62f27447b249" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-request-id": [ + "2b774a3c-1922-4df0-a186-bc9d6e2178b4" + ], + "x-ms-correlation-request-id": [ + "2b774a3c-1922-4df0-a186-bc9d6e2178b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200517Z:2b774a3c-1922-4df0-a186-bc9d6e2178b4" + ], + "Date": [ + "Fri, 05 Mar 2021 20:05:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"serviceKind\": \"Stateful\",\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2,\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe9c2e31-3033-4c27-9747-fff4a42f3a4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "373" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/b7b20003-4a75-46bb-9db3-b482fe4e20c1?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b7b20003-4a75-46bb-9db3-b482fe4e20c1?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "e951c160-61f0-48e2-aded-35e54c2b784e" + ], + "x-ms-correlation-request-id": [ + "e951c160-61f0-48e2-aded-35e54c2b784e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200232Z:e951c160-61f0-48e2-aded-35e54c2b784e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:31 GMT" + ], + "Content-Length": [ + "1078" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatefulService6406\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:31.881133-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:31.881133-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"serviceKind\": \"Stateful\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n },\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"serviceKind\": \"Stateful\",\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2,\r\n \"replicaRestartWaitDuration\": \"00:11:00\",\r\n \"quorumLossWaitDuration\": \"00:11:00\",\r\n \"standByReplicaKeepDuration\": \"00:11:00\",\r\n \"servicePlacementTimeLimit\": \"00:11:00\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7530788-3e06-4d34-a3bf-0bfaad546399" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "556" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/8b800003-e8dd-4648-9c4f-3898cef51299?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8b800003-e8dd-4648-9c4f-3898cef51299?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "9e1bfef4-fb48-461b-8f26-1f656b66c062" + ], + "x-ms-correlation-request-id": [ + "9e1bfef4-fb48-461b-8f26-1f656b66c062" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200313Z:9e1bfef4-fb48-461b-8f26-1f656b66c062" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:13 GMT" + ], + "Content-Length": [ + "1263" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatefulService6406\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:03:13.7432941-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:03:13.7432941-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"serviceKind\": \"Stateful\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n },\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2,\r\n \"replicaRestartWaitDuration\": \"00:11:00\",\r\n \"quorumLossWaitDuration\": \"00:11:00\",\r\n \"standByReplicaKeepDuration\": \"00:11:00\",\r\n \"servicePlacementTimeLimit\": \"00:11:00\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b7b20003-4a75-46bb-9db3-b482fe4e20c1?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I3YjIwMDAzLTRhNzUtNDZiYi05ZGIzLWI0ODJmZTRlMjBjMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe9c2e31-3033-4c27-9747-fff4a42f3a4a" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "594394c0-e9ea-46da-837e-ee04c29f2b92" + ], + "x-ms-correlation-request-id": [ + "594394c0-e9ea-46da-837e-ee04c29f2b92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200252Z:594394c0-e9ea-46da-837e-ee04c29f2b92" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:51 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b7b20003-4a75-46bb-9db3-b482fe4e20c1\",\r\n \"startTime\": \"2021-03-05T20:02:31.9937006Z\",\r\n \"endTime\": \"2021-03-05T20:02:32.3686944Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ca2349-cfeb-47db-885a-31c110f56aaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "671271aa-779b-488b-868c-8f32f23cd35c" + ], + "x-ms-correlation-request-id": [ + "671271aa-779b-488b-868c-8f32f23cd35c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200252Z:671271aa-779b-488b-868c-8f32f23cd35c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:52 GMT" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"GetEntityFromTable: the ServiceData 05e40eba-0ec6-41bd-b7af-8fc1a433ce3f&testapp2352&teststatelessservice4667 could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ca2349-cfeb-47db-885a-31c110f56aaa" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "2f3ff2c3-691c-4b6b-a897-662cadc6cfc1" + ], + "x-ms-correlation-request-id": [ + "2f3ff2c3-691c-4b6b-a897-662cadc6cfc1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200313Z:2f3ff2c3-691c-4b6b-a897-662cadc6cfc1" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:12 GMT" + ], + "Content-Length": [ + "947" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService4667\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:52.9368863-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:52.9368863-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef5588b0-08b1-4a2b-8a02-043ee98f30e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "f1611294-91e4-4f90-84ea-ea152d219c0f" + ], + "x-ms-correlation-request-id": [ + "f1611294-91e4-4f90-84ea-ea152d219c0f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200313Z:f1611294-91e4-4f90-84ea-ea152d219c0f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:12 GMT" + ], + "Content-Length": [ + "947" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService4667\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:52.9368863-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:52.9368863-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcb92591-0a1c-4171-9e9f-b2301594c2e7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-request-id": [ + "fbe165c1-f1f4-47a0-a2f9-268a5aff2726" + ], + "x-ms-correlation-request-id": [ + "fbe165c1-f1f4-47a0-a2f9-268a5aff2726" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200354Z:fbe165c1-f1f4-47a0-a2f9-268a5aff2726" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:54 GMT" + ], + "Content-Length": [ + "1056" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService4667\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:03:34.3337934-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:03:34.3337934-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1,\r\n \"minInstanceCount\": 2,\r\n \"minInstancePercentage\": 20,\r\n \"instanceCloseDelayDuration\": \"00:11:00\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8744505b-79c5-48c0-a248-78688f53f7d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-request-id": [ + "8588b96d-4205-40f4-86be-284cff1e9263" + ], + "x-ms-correlation-request-id": [ + "8588b96d-4205-40f4-86be-284cff1e9263" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200517Z:8588b96d-4205-40f4-86be-284cff1e9263" + ], + "Date": [ + "Fri, 05 Mar 2021 20:05:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"serviceKind\": \"Stateless\",\r\n \"instanceCount\": -1,\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ca2349-cfeb-47db-885a-31c110f56aaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "237" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/b5380003-4445-43ee-a5b9-c9b631254cc4?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5380003-4445-43ee-a5b9-c9b631254cc4?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "796068a7-6d92-48ff-a40e-faad25b5e320" + ], + "x-ms-correlation-request-id": [ + "796068a7-6d92-48ff-a40e-faad25b5e320" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200253Z:796068a7-6d92-48ff-a40e-faad25b5e320" + ], + "Date": [ + "Fri, 05 Mar 2021 20:02:52 GMT" + ], + "Content-Length": [ + "946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService4667\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:52.9368863-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:52.9368863-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"serviceKind\": \"Stateless\",\r\n \"instanceCount\": -1,\r\n \"minInstanceCount\": 2,\r\n \"minInstancePercentage\": 20,\r\n \"instanceCloseDelayDuration\": \"00:11:00\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n }\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcb92591-0a1c-4171-9e9f-b2301594c2e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/d1ba0003-a47d-4e7c-ab64-2b92ded1c5b4?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d1ba0003-a47d-4e7c-ab64-2b92ded1c5b4?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "ef02ff48-9459-4ee4-8c71-e25d1d08b5be" + ], + "x-ms-correlation-request-id": [ + "ef02ff48-9459-4ee4-8c71-e25d1d08b5be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200334Z:ef02ff48-9459-4ee4-8c71-e25d1d08b5be" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:33 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService4667\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:03:34.3337934-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:03:34.3337934-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1,\r\n \"minInstanceCount\": 2,\r\n \"minInstancePercentage\": 20,\r\n \"instanceCloseDelayDuration\": \"00:11:00\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5380003-4445-43ee-a5b9-c9b631254cc4?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2I1MzgwMDAzLTQ0NDUtNDNlZS1hNWI5LWM5YjYzMTI1NGNjND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ca2349-cfeb-47db-885a-31c110f56aaa" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "01d253e4-5325-425e-a3c2-4c3ce32c71ec" + ], + "x-ms-correlation-request-id": [ + "01d253e4-5325-425e-a3c2-4c3ce32c71ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200313Z:01d253e4-5325-425e-a3c2-4c3ce32c71ec" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:12 GMT" + ], + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5380003-4445-43ee-a5b9-c9b631254cc4\",\r\n \"startTime\": \"2021-03-05T20:02:52.9987079Z\",\r\n \"endTime\": \"2021-03-05T20:02:53.326849Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8b800003-e8dd-4648-9c4f-3898cef51299?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzhiODAwMDAzLWU4ZGQtNDY0OC05YzRmLTM4OThjZWY1MTI5OT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7530788-3e06-4d34-a3bf-0bfaad546399" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "5200461b-d864-4769-9088-222aad3a1b7c" + ], + "x-ms-correlation-request-id": [ + "5200461b-d864-4769-9088-222aad3a1b7c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200334Z:5200461b-d864-4769-9088-222aad3a1b7c" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:33 GMT" + ], + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8b800003-e8dd-4648-9c4f-3898cef51299\",\r\n \"startTime\": \"2021-03-05T20:03:13.7954449Z\",\r\n \"endTime\": \"2021-03-05T20:03:15.750167Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/d1ba0003-a47d-4e7c-ab64-2b92ded1c5b4?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2QxYmEwMDAzLWE0N2QtNGU3Yy1hYjY0LTJiOTJkZWQxYzViND9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcb92591-0a1c-4171-9e9f-b2301594c2e7" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-request-id": [ + "fc7ff25b-c8e4-4f05-b758-d34342458328" + ], + "x-ms-correlation-request-id": [ + "fc7ff25b-c8e4-4f05-b758-d34342458328" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200354Z:fc7ff25b-c8e4-4f05-b758-d34342458328" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:54 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d1ba0003-a47d-4e7c-ab64-2b92ded1c5b4\",\r\n \"startTime\": \"2021-03-05T20:03:34.3803658Z\",\r\n \"endTime\": \"2021-03-05T20:03:34.5053704Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlZnVsU2VydmljZTY0MDY/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d99a21d6-e202-41f6-b2a9-2b42ba064a29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/7d590003-f372-4deb-8b37-a8129556b0dc?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/7d590003-f372-4deb-8b37-a8129556b0dc?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9c8be529-8649-488d-91fa-c35633b4bcb0" + ], + "x-ms-correlation-request-id": [ + "9c8be529-8649-488d-91fa-c35633b4bcb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200355Z:9c8be529-8649-488d-91fa-c35633b4bcb0" + ], + "Date": [ + "Fri, 05 Mar 2021 20:03:54 GMT" + ], + "Content-Length": [ + "1263" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatefulService6406\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatefulService6406\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:03:13.7432941-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:03:13.7432941-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"serviceKind\": \"Stateful\",\r\n \"serviceTypeName\": \"VotingDataType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"UniformInt64Range\",\r\n \"count\": 1,\r\n \"lowKey\": 0,\r\n \"highKey\": 25\r\n },\r\n \"hasPersistedState\": true,\r\n \"targetReplicaSetSize\": 3,\r\n \"minReplicaSetSize\": 2,\r\n \"replicaRestartWaitDuration\": \"00:11:00\",\r\n \"quorumLossWaitDuration\": \"00:11:00\",\r\n \"standByReplicaKeepDuration\": \"00:11:00\",\r\n \"servicePlacementTimeLimit\": \"00:11:00\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/7d590003-f372-4deb-8b37-a8129556b0dc?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzdkNTkwMDAzLWYzNzItNGRlYi04YjM3LWE4MTI5NTU2YjBkYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d99a21d6-e202-41f6-b2a9-2b42ba064a29" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-request-id": [ + "046e7c45-5bc7-4c5d-b3d5-91fce4b26f3f" + ], + "x-ms-correlation-request-id": [ + "046e7c45-5bc7-4c5d-b3d5-91fce4b26f3f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200415Z:046e7c45-5bc7-4c5d-b3d5-91fce4b26f3f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:14 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d590003-f372-4deb-8b37-a8129556b0dc\",\r\n \"startTime\": \"2021-03-05T20:03:54.9774783Z\",\r\n \"endTime\": \"2021-03-05T20:03:56.3401851Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/7d590003-f372-4deb-8b37-a8129556b0dc?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzdkNTkwMDAzLWYzNzItNGRlYi04YjM3LWE4MTI5NTU2YjBkYz9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d99a21d6-e202-41f6-b2a9-2b42ba064a29" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-request-id": [ + "254afc9f-5926-46a7-bc03-b33372f3a015" + ], + "x-ms-correlation-request-id": [ + "254afc9f-5926-46a7-bc03-b33372f3a015" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200415Z:254afc9f-5926-46a7-bc03-b33372f3a015" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:14 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTIvc2VydmljZXMvdGVzdFN0YXRlbGVzc1NlcnZpY2U0NjY3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35aa2c7a-0c92-4c05-92a0-f7a594ef8ded" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/1ccf0003-2b61-4bcb-ac73-d30c34915495?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1ccf0003-2b61-4bcb-ac73-d30c34915495?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "bd42600b-079a-4ae4-b4ff-c36d69cf060b" + ], + "x-ms-correlation-request-id": [ + "bd42600b-079a-4ae4-b4ff-c36d69cf060b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200415Z:bd42600b-079a-4ae4-b4ff-c36d69cf060b" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:15 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352/services/testStatelessService4667\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications/services\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testStatelessService4667\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:03:34.3337934-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:03:34.3337934-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"serviceKind\": \"Stateless\",\r\n \"serviceTypeName\": \"VotingWebType\",\r\n \"partitionDescription\": {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"instanceCount\": -1,\r\n \"minInstanceCount\": 2,\r\n \"minInstancePercentage\": 20,\r\n \"instanceCloseDelayDuration\": \"00:11:00\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1ccf0003-2b61-4bcb-ac73-d30c34915495?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zLzFjY2YwMDAzLTJiNjEtNGJjYi1hYzczLWQzMGMzNDkxNTQ5NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35aa2c7a-0c92-4c05-92a0-f7a594ef8ded" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f5ea5cda-0d56-4811-a38a-4bd6b681ddb2" + ], + "x-ms-correlation-request-id": [ + "f5ea5cda-0d56-4811-a38a-4bd6b681ddb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200435Z:f5ea5cda-0d56-4811-a38a-4bd6b681ddb2" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:35 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"1ccf0003-2b61-4bcb-ac73-d30c34915495\",\r\n \"startTime\": \"2021-03-05T20:04:15.3957903Z\",\r\n \"endTime\": \"2021-03-05T20:04:16.6459273Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/1ccf0003-2b61-4bcb-ac73-d30c34915495?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzLzFjY2YwMDAzLTJiNjEtNGJjYi1hYzczLWQzMGMzNDkxNTQ5NT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35aa2c7a-0c92-4c05-92a0-f7a594ef8ded" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-request-id": [ + "1dc70ef9-f6b5-4513-a046-800ead82e744" + ], + "x-ms-correlation-request-id": [ + "1dc70ef9-f6b5-4513-a046-800ead82e744" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200435Z:1dc70ef9-f6b5-4513-a046-800ead82e744" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:35 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applications/testApp2352?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvbnMvdGVzdEFwcDIzNTI/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "005c72d5-a53d-4337-8e6a-a0f246f8a345" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/bf150003-0a63-431e-bd3d-dcf880e40601?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/bf150003-0a63-431e-bd3d-dcf880e40601?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "d6429d0f-ce74-4fe8-af3a-5eb0ad6bd61e" + ], + "x-ms-correlation-request-id": [ + "d6429d0f-ce74-4fe8-af3a-5eb0ad6bd61e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200436Z:d6429d0f-ce74-4fe8-af3a-5eb0ad6bd61e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:35 GMT" + ], + "Content-Length": [ + "921" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applications/testApp2352\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applications\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"testApp2352\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:02:10.6347168-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:02:10.6347168-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"version\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType/versions/1.0.0\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/bf150003-0a63-431e-bd3d-dcf880e40601?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2JmMTUwMDAzLTBhNjMtNDMxZS1iZDNkLWRjZjg4MGU0MDYwMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "005c72d5-a53d-4337-8e6a-a0f246f8a345" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-request-id": [ + "5b35c7cf-f269-489c-ad94-b2cb32b899f5" + ], + "x-ms-correlation-request-id": [ + "5b35c7cf-f269-489c-ad94-b2cb32b899f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200456Z:5b35c7cf-f269-489c-ad94-b2cb32b899f5" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:55 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"bf150003-0a63-431e-bd3d-dcf880e40601\",\r\n \"startTime\": \"2021-03-05T20:04:36.1197509Z\",\r\n \"endTime\": \"2021-03-05T20:04:39.0185322Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/bf150003-0a63-431e-bd3d-dcf880e40601?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2JmMTUwMDAzLTBhNjMtNDMxZS1iZDNkLWRjZjg4MGU0MDYwMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "005c72d5-a53d-4337-8e6a-a0f246f8a345" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-request-id": [ + "076194fd-dea0-42c2-b656-c9bd4571a07e" + ], + "x-ms-correlation-request-id": [ + "076194fd-dea0-42c2-b656-c9bd4571a07e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200456Z:076194fd-dea0-42c2-b656-c9bd4571a07e" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:55 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedclusters/sfmcps-ps9754/applicationTypes/VotingType?api-version=2021-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3NmbWNwcy1yZy1wczc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9tYW5hZ2VkY2x1c3RlcnMvc2ZtY3BzLXBzOTc1NC9hcHBsaWNhdGlvblR5cGVzL1ZvdGluZ1R5cGU/YXBpLXZlcnNpb249MjAyMS0wMS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f29b19e-d428-49bc-bef5-014867deb0ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/ce830003-d13a-4ff1-b4ec-c574b575198e?api-version=2021-01-01-preview&Experiment=local" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ce830003-d13a-4ff1-b4ec-c574b575198e?api-version=2021-01-01-preview&Experiment=local" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-request-id": [ + "82b21f49-83dc-4ddd-ad6d-c76adae25bc0" + ], + "x-ms-correlation-request-id": [ + "82b21f49-83dc-4ddd-ad6d-c76adae25bc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200456Z:82b21f49-83dc-4ddd-ad6d-c76adae25bc0" + ], + "Date": [ + "Fri, 05 Mar 2021 20:04:56 GMT" + ], + "Content-Length": [ + "719" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfmcps-rg-ps74/providers/Microsoft.ServiceFabric/managedClusters/sfmcps-ps9754/applicationTypes/VotingType\",\r\n \"type\": \"Microsoft.ServiceFabric/managedclusters/applicationTypes\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"VotingType\",\r\n \"systemData\": {\r\n \"createdBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-03-05T12:00:49.0138209-08:00\",\r\n \"lastModifiedBy\": \"b4f91a72-fd09-4e86-9280-7e0eae864947\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-03-05T12:00:49.0138209-08:00\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ce830003-d13a-4ff1-b4ec-c574b575198e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25zL2NlODMwMDAzLWQxM2EtNGZmMS1iNGVjLWM1NzRiNTc1MTk4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f29b19e-d428-49bc-bef5-014867deb0ac" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-request-id": [ + "0492cfad-ad8c-4af4-9520-f4a32d71859f" + ], + "x-ms-correlation-request-id": [ + "0492cfad-ad8c-4af4-9520-f4a32d71859f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200516Z:0492cfad-ad8c-4af4-9520-f4a32d71859f" + ], + "Date": [ + "Fri, 05 Mar 2021 20:05:16 GMT" + ], + "Content-Length": [ + "203" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ce830003-d13a-4ff1-b4ec-c574b575198e\",\r\n \"startTime\": \"2021-03-05T20:04:56.7509974Z\",\r\n \"endTime\": \"2021-03-05T20:05:16.8437411Z\",\r\n \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/ce830003-d13a-4ff1-b4ec-c574b575198e?api-version=2021-01-01-preview&Experiment=local", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbWFuYWdlZGNsdXN0ZXJvcGVyYXRpb25yZXN1bHRzL2NlODMwMDAzLWQxM2EtNGZmMS1iNGVjLWM1NzRiNTc1MTk4ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAxLXByZXZpZXcmRXhwZXJpbWVudD1sb2NhbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f29b19e-d428-49bc-bef5-014867deb0ac" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ServiceFabricManagedClusters.ServiceFabricManagedClustersManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-request-id": [ + "13910a3a-b8a6-4b27-ae9b-5ed2bd204984" + ], + "x-ms-correlation-request-id": [ + "13910a3a-b8a6-4b27-ae9b-5ed2bd204984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210305T200516Z:13910a3a-b8a6-4b27-ae9b-5ed2bd204984" + ], + "Date": [ + "Fri, 05 Mar 2021 20:05:16 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "Test-ManagedService": [ + "ps74", + "ps9754", + "testApp2352", + "testStatelessService4667", + "testStatefulService6406" + ] + }, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file From 33100ed0904257fa9664d901781e8223b93f232f Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Mon, 8 Mar 2021 11:55:24 -0800 Subject: [PATCH 12/13] Help Doc updates, changelog and module --- .../ServiceFabric/Az.ServiceFabric.psd1 | 3 +- src/ServiceFabric/ServiceFabric/ChangeLog.md | 19 + ...ceFabricManagedClusterClientCertificate.md | 2 +- ...-AzServiceFabricManagedNodeTypeVMSecret.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 156 ++++ ...viceFabricManagedClusterApplicationType.md | 155 ++++ ...ricManagedClusterApplicationTypeVersion.md | 173 ++++ ...et-AzServiceFabricManagedClusterService.md | 172 ++++ .../Get-AzServiceFabricManagedNodeType.md | 4 +- .../help/New-AzServiceFabricManagedCluster.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 277 +++++++ ...viceFabricManagedClusterApplicationType.md | 160 ++++ ...ricManagedClusterApplicationTypeVersion.md | 222 ++++++ ...ew-AzServiceFabricManagedClusterService.md | 746 ++++++++++++++++++ .../Remove-AzServiceFabricManagedCluster.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 251 ++++++ ...viceFabricManagedClusterApplicationType.md | 237 ++++++ ...ricManagedClusterApplicationTypeVersion.md | 269 +++++++ ...ceFabricManagedClusterClientCertificate.md | 2 +- ...ve-AzServiceFabricManagedClusterService.md | 268 +++++++ .../Remove-AzServiceFabricManagedNodeType.md | 2 +- ...ServiceFabricManagedNodeTypeVMExtension.md | 2 +- .../help/Set-AzServiceFabricManagedCluster.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 589 ++++++++++++++ ...viceFabricManagedClusterApplicationType.md | 243 ++++++ ...ricManagedClusterApplicationTypeVersion.md | 292 +++++++ ...et-AzServiceFabricManagedClusterService.md | 634 +++++++++++++++ .../Set-AzServiceFabricManagedNodeType.md | 2 +- 28 files changed, 4876 insertions(+), 12 deletions(-) create mode 100644 src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md create mode 100644 src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md create mode 100644 src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md create mode 100644 src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md create mode 100644 src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md create mode 100644 src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index 2b632d6cd125..9f9f072f7c69 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -58,7 +58,8 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.6'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', 'Microsoft.Azure.KeyVault.WebKey.dll', - 'Microsoft.Azure.Management.ServiceFabric.dll' + 'Microsoft.Azure.Management.ServiceFabric.dll', + 'Microsoft.Azure.Management.ServiceFabricManagedClusters.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ServiceFabric/ServiceFabric/ChangeLog.md b/src/ServiceFabric/ServiceFabric/ChangeLog.md index 28f69e85cdeb..79d105ee4053 100644 --- a/src/ServiceFabric/ServiceFabric/ChangeLog.md +++ b/src/ServiceFabric/ServiceFabric/ChangeLog.md @@ -41,6 +41,25 @@ * `Update-AzServiceFabricReliability` is now able to update reliability level when the cluster has more than one primary node type. To do this, the name of the node type is supplied via the new -NodeType parameter. +* Added new cmdlets for managed applications: + - `New-AzServiceFabricManagedClusterApplication` + - `Get-AzServiceFabricManagedClusterApplication` + - `Set-AzServiceFabricManagedClusterApplication` + - `Remove-AzServiceFabricManagedClusterApplication` + - `New-AzServiceFabricManagedClusterApplicationType` + - `Get-AzServiceFabricManagedClusterApplicationType` + - `Set-AzServiceFabricManagedClusterApplicationType` + - `Remove-AzServiceFabricManagedClusterApplicationType` + - `New-AzServiceFabricManagedClusterApplicationTypeVersion` + - `Get-AzServiceFabricManagedClusterApplicationTypeVersion` + - `Set-AzServiceFabricManagedClusterApplicationTypeVersion` + - `Remove-AzServiceFabricManagedClusterApplicationTypeVersion` + - `New-AzServiceFabricManagedClusterService` + - `Get-AzServiceFabricManagedClusterService` + - `Set-AzServiceFabricManagedClusterService` + - `Remove-AzServiceFabricManagedClusterService` +* Upgraded Managed Cluster commands to use Service Fabric Managed Cluster SDK version 1.0.0-beta.1 which uses service fabric resource provider api-version 2021-01-01-preview. + ## Version 2.2.2 * Fixed `Add-AzServiceFabricNodeType`. Added node type to service fabric cluster before creating virtual machine scale set. diff --git a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md index c0b04ed67c44..9bfdfac73e12 100644 --- a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md +++ b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md @@ -139,7 +139,7 @@ Accept wildcard characters: False Managed cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster Parameter Sets: ClientCertByTpByObj, ClientCertByCnByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md index 70ca75ad81a4..954dee495288 100644 --- a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md +++ b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md @@ -137,7 +137,7 @@ Accept wildcard characters: False Node Type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md new file mode 100644 index 000000000000..914ad4e68d07 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md @@ -0,0 +1,156 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/get-azservicefabricmanagedclusterapplication +schema: 2.0.0 +--- + +# Get-AzServiceFabricManagedClusterApplication + +## SYNOPSIS +Get Service Fabric managed application details. Only supports ARM deployed applications. + +## SYNTAX + +### ByResourceGroupAndCluster (Default) +``` +Get-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] + [-DefaultProfile ] [] +``` + +### ByName +``` +Get-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] + [-Name] [-DefaultProfile ] [] +``` + +### ByResourceId +``` +Get-AzServiceFabricManagedClusterApplication -ResourceId [-DefaultProfile ] + [] +``` + +## DESCRIPTION +This cmdlet gets the managed application details in the specified resource group and cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> Get-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName +``` + +This example gets the managed application resource details for the managed application "testApp". + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> Get-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName +``` + +This example gets a list of the managed applications under the cluster "testCluster". + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp" +PS C:\> Get-AzServiceFabricManagedClusterApplication -ResourceId $resourceId +``` + +This example will get the managed application details with the ARM Resource ID specified, if it doesn't find the resource it will throw an exception. + + +## PARAMETERS + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application. + +```yaml +Type: String +Parameter Sets: ByName +Aliases: ApplicationName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md new file mode 100644 index 000000000000..d906295ed1ff --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md @@ -0,0 +1,155 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/get-azservicefabricmanagedclusterapplicationtype +schema: 2.0.0 +--- + +# Get-AzServiceFabricManagedClusterApplicationType + +## SYNOPSIS +Get Service Fabric managed application type details. Only supports ARM deployed application types. + +## SYNTAX + +### ByResourceGroupAndCluster (Default) +``` +Get-AzServiceFabricManagedClusterApplicationType [-ResourceGroupName] [-ClusterName] + [-DefaultProfile ] [] +``` + +### ByName +``` +Get-AzServiceFabricManagedClusterApplicationType [-ResourceGroupName] [-ClusterName] + [-Name] [-DefaultProfile ] [] +``` + +### ByResourceId +``` +Get-AzServiceFabricManagedClusterApplicationType -ResourceId + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Use this cmdlet to get the managed application type details in the specified resource group and cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName +``` + +This example will get the managed application type details with the parameters specified, if it doesn't find the resource it will throw an exception. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName +``` + +This example will get a list of the managed application types defined under the specified cluster. + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType" +PS C:\> Get-AzServiceFabricManagedClusterApplicationType -ResourceId $resourceId +``` + +This example will get the managed application type details with the ARM Resource ID specified, if it doesn't find the resource it will throw an exception. + +## PARAMETERS + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type + +```yaml +Type: String +Parameter Sets: ByName +Aliases: ApplicationTypeName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md new file mode 100644 index 000000000000..b42a193ec7ff --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -0,0 +1,173 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/get-azservicefabricmanagedclusterapplicationtypeversion +schema: 2.0.0 +--- + +# Get-AzServiceFabricManagedClusterApplicationTypeVersion + +## SYNOPSIS +Get Service Fabric managed application type version details. Only supports ARM deployed application type versions. + +## SYNTAX + +### ByResourceGroupAndCluster (Default) +``` +Get-AzServiceFabricManagedClusterApplicationTypeVersion [-ResourceGroupName] [-ClusterName] + [-Name] [-DefaultProfile ] [] +``` + +### ByVersion +``` +Get-AzServiceFabricManagedClusterApplicationTypeVersion [-ResourceGroupName] [-ClusterName] + [-Name] [-Version] [-DefaultProfile ] [] +``` + +### ByResourceId +``` +Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Use this cmdlet to get the managed application type version details in the specified resource group and cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $appTypeVersion = "v1" +PS C:\> Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $appTypeVersion +``` + +This example gets the managed application type "testAppType" with version "v1", if it doesn't find the resource it will throw an exception. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName +``` + +This example gets a list of the managed application type versions defined under the specified cluster and type. + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType/versions/v1" +PS C:\> Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId $resourceId +``` + +This example will get the managed application type version details with the ARM Resource ID specified, if it doesn't find the resource it will throw an exception. + + +## PARAMETERS + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByVersion +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByVersion +Aliases: ApplicationTypeName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByVersion +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application type version. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Version +Specify the version of the managed application type. + +```yaml +Type: String +Parameter Sets: ByVersion +Aliases: ApplicationTypeVersion + +Required: True +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md new file mode 100644 index 000000000000..cea35855f4ec --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md @@ -0,0 +1,172 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/get-azservicefabricmanagedclusterservice +schema: 2.0.0 +--- + +# Get-AzServiceFabricManagedClusterService + +## SYNOPSIS +Get Service Fabric managed service details under the specified application and cluster. Only supports ARM deployed services. + +## SYNTAX + +### ByResourceGroupAndCluster (Default) +``` +Get-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-DefaultProfile ] [] +``` + +### ByName +``` +Get-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] [-DefaultProfile ] [] +``` + +### ByResourceId +``` +Get-AzServiceFabricManagedClusterService -ResourceId [-DefaultProfile ] + [] +``` + +## DESCRIPTION +This cmdlet will get the managed service details in the specified application and cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService" +PS C:\> Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName +``` + +This example gets the managed service resource details for the managed service "testService". + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName +``` + +This example gets a list of the managed services under the application "testApp". + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp/services/testService" +PS C:\> Get-AzServiceFabricManagedClusterService -ResourceId $resourceId +``` + +This example will get the managed service details with the ARM Resource ID specified, if it doesn't find the resource it will throw an exception. + +## PARAMETERS + +### -ApplicationName +Specify the name of the managed application. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed service. + +```yaml +Type: String +Parameter Sets: ByName +Aliases: ServiceName + +Required: True +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroupAndCluster, ByName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed service. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedNodeType.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedNodeType.md index 4eda3dbc0adf..9d898f59bc70 100644 --- a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedNodeType.md +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedNodeType.md @@ -14,7 +14,7 @@ Get the managed node type resource details. ### ByName (Default) ``` -Get-AzServiceFabricManagedNodeType [-ResourceGroupName] [-ClusterName] -Name +Get-AzServiceFabricManagedNodeType [-ResourceGroupName] [-ClusterName] [-Name ] [-DefaultProfile ] [] ``` @@ -87,7 +87,7 @@ Type: System.String Parameter Sets: ByName Aliases: NodeTypeName -Required: True +Required: False Position: Named Default value: None Accept pipeline input: True (ByPropertyName) diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md index 1cd58a676ab2..3475650faec1 100644 --- a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md @@ -308,7 +308,7 @@ Accept wildcard characters: False Cluster's Sku, the options are Basic: it will have a minimum of 3 seed nodes and only allows 1 node type and Standard: it will have a minimum of 5 seed nodes and allows multiple node types. ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.ManagedClusterSku Parameter Sets: (All) Aliases: Accepted values: Basic, Standard diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md new file mode 100644 index 000000000000..9bf16992d372 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md @@ -0,0 +1,277 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/new-azservicefabricmanagedclusterapplication +schema: 2.0.0 +--- + +# New-AzServiceFabricManagedClusterApplication + +## SYNOPSIS +Create new service fabric managed application under the specified resource group and cluster. + +## SYNTAX + +### SkipAppTypeVersion (Default) +``` +New-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] + [-ApplicationTypeName] [-ApplicationTypeVersion] -Name + [-ApplicationParameter ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### CreateAppTypeVersion +``` +New-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] + [-ApplicationTypeName] [-ApplicationTypeVersion] -Name + [-ApplicationParameter ] -PackageUrl [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet creates a new service fabric managed application under the specified resource group and cluster. The parameter -PackageUrl can be used to create the type version, If the type version already exits but its in 'Failed' state the cmdlet will ask if the user wants to recreate the type version. If it continues in 'Failed' state, the command will stop the process and throw an exception. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $appTypeName = "testAppType" +PS C:\> $appTypeVersion = "v1" +PS C:\> $appParameters = @{key0="value0";key1=$null;key2="value2"} +PS C:\> New-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationTypeName $appTypeName -ApplicationTypeVersion $appTypeVersion -Name $appName -ApplicationParameter $appParameters +``` + +This example creates the managed application "testApp" under resource group "testRG" and cluster "testCluster". The managed application type "TestAppType" version "v1" should already exist in the cluster, and the application parameters should be defined in the application manifest otherwise the cmdlet will fail. + +### Example 2: Specify -PackageUrl to create the application type version before creating the application. +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $appTypeName = "testAppType" +PS C:\> $appTypeVersion = "v1" +PS C:\> $appParameters = @{key0="value0";key1=$null;key2="value2"} +PS C:\> $packageUrlV1 = "https://sftestapp.blob.core.windows.net/sftestapp/testApp_1.0.sfpkg" +PS C:\> New-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationTypeName $appTypeName -ApplicationTypeVersion $appTypeVersion -Name $appName -PackageUrl $packageUrlV1 -ApplicationParameter $appParameters +``` + +This example creates the managed application type "testAppType" version "v1" using the package url provided. After this, it will continue the normal process to create the application. If the managed application type version already exits and the provisioning state its in 'Failed' it will prompt to decide if the user wants to recreate the type version. + +## PARAMETERS + +### -ApplicationParameter +Specify the application parameters as key/value pairs. +These parameters must exist in the application manifest. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ApplicationTypeName +Specify the name of the managed application type + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApplicationTypeVersion +Specify the managed application type version + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Continue without prompts + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ApplicationName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageUrl +Specify the url of the application package sfpkg file + +```yaml +Type: String +Parameter Sets: CreateAppTypeVersion +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md new file mode 100644 index 000000000000..30b5b7741b3e --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md @@ -0,0 +1,160 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/new-azservicefabricmanagedclusterapplicationtype +schema: 2.0.0 +--- + +# New-AzServiceFabricManagedClusterApplicationType + +## SYNOPSIS +Create new service fabric managed application type under the specified resource group and cluster. + +## SYNTAX + +``` +New-AzServiceFabricManagedClusterApplicationType [-ResourceGroupName] [-ClusterName] + [-Name] [-Tags ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The cmdlet creates a new service fabric managed application type under the specified resource group and cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $appType = New-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Verbose +``` + +This example will create a new managed application type "testAppType" under the resource group and cluster specified. + + +## PARAMETERS + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the application type + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ApplicationTypeName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md new file mode 100644 index 000000000000..f3bbe4002e6e --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -0,0 +1,222 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/new-azservicefabricmanagedclusterapplicationtypeversion +schema: 2.0.0 +--- + +# New-AzServiceFabricManagedClusterApplicationTypeVersion + +## SYNOPSIS +Create new managed application type version under the specified resource group and cluster. + +## SYNTAX + +``` +New-AzServiceFabricManagedClusterApplicationTypeVersion [-ResourceGroupName] [-ClusterName] + [-Name] [-Version] -PackageUrl [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet creates a new managed application type version using the package specified in -PackageUrl, this should be accessible through a REST endpoint for Azure Resource Manager to consume during deployment and the contained application packaged zipped with the extension .sfpkg. This command will create the application type if it doesn't exist already. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $version = "v1" +PS C:\> $packageUrl = "https://sftestapp.blob.core.windows.net/sftestapp/testApp_1.0.sfpkg" +PS C:\> New-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $version -PackageUrl $packageUrl -Verbose +``` + +This example will create an managed application type version "v1" under type "testAppType". The version in the application manifest contained in the package should have the same version as the one specified in -Version. + + +## PARAMETERS + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Continue without prompts + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ApplicationTypeName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageUrl +Specify the url of the application package sfpkg file + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Version +Specify the managed application type version + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ApplicationTypeVersion + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md new file mode 100644 index 000000000000..c7b93f820a8f --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md @@ -0,0 +1,746 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/new-azservicefabricmanagedclusterservice +schema: 2.0.0 +--- + +# New-AzServiceFabricManagedClusterService + +## SYNOPSIS +Create new service fabric managed service under the specified application and cluster. + +## SYNTAX + +### Stateless-Singleton (Default) +``` +New-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] -Type [-Stateless] -InstanceCount + [-MinInstanceCount ] [-MinInstancePercentage ] [-InstanceCloseDelayDuration ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-PartitionSchemeSingleton] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### Stateless-UniformInt64Range +``` +New-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] -Type [-Stateless] -InstanceCount + [-MinInstanceCount ] [-MinInstancePercentage ] [-InstanceCloseDelayDuration ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-PartitionSchemeUniformInt64] -PartitionCount -LowKey -HighKey + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### Stateless-Named +``` +New-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] -Type [-Stateless] -InstanceCount + [-MinInstanceCount ] [-MinInstancePercentage ] [-InstanceCloseDelayDuration ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-PartitionSchemeNamed] -PartitionNames [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### Stateful-Singleton +``` +New-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] -Type [-Stateful] -TargetReplicaSetSize + -MinReplicaSetSize [-HasPersistedState] [-DropSourceReplicaOnMove] + [-ReplicaRestartWaitDuration ] [-QuorumLossWaitDuration ] + [-StandByReplicaKeepDuration ] [-ServicePlacementTimeLimit ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-PartitionSchemeSingleton] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### Stateful-UniformInt64Range +``` +New-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] -Type [-Stateful] -TargetReplicaSetSize + -MinReplicaSetSize [-HasPersistedState] [-DropSourceReplicaOnMove] + [-ReplicaRestartWaitDuration ] [-QuorumLossWaitDuration ] + [-StandByReplicaKeepDuration ] [-ServicePlacementTimeLimit ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-PartitionSchemeUniformInt64] -PartitionCount -LowKey -HighKey + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### Stateful-Named +``` +New-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] -Type [-Stateful] -TargetReplicaSetSize + -MinReplicaSetSize [-HasPersistedState] [-DropSourceReplicaOnMove] + [-ReplicaRestartWaitDuration ] [-QuorumLossWaitDuration ] + [-StandByReplicaKeepDuration ] [-ServicePlacementTimeLimit ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-PartitionSchemeNamed] -PartitionNames [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet allows to creating stateless or stateful managed services under the specified application. The service should exit in the application manifest and the type should be the same as the one in the manifest. The application name should be a prefix of the service name. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService1" +PS C:\> $serviceTypeName = "testStateless" +PS C:\> $statelessServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceMetric" -ArgumentList @("metric1", "Low", 4) +PS C:\> New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Type $serviceTypeName -Stateless -InstanceCount -1 -PartitionSchemaSingleton -Metric @($statelessServiceMetric) -Verbose +``` + +This example will create a new stateless managed service "testService1" with instance count -1 (on all the nodes). + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService2" +PS C:\> $serviceTypeName = "testStatefulType" +PS C:\> $partitionCount = 5 +PS C:\> $partitionLowKey = 0 +PS C:\> $partitionHighKey = 25 +PS C:\> $statefulServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceMetric" -ArgumentList @("metric2", "Medium", 4, 2) +PS C:\> New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Type $serviceTypeName -Stateful -TargetReplicaSetSize 5 -MinReplicaSetSize 3 -Metric @($statefulServiceMetric) -PartitionSchemeUniformInt64 -PartitionCount $partitionCount -LowKey $partitionLowKey -HighKey $partitionHighKey -Verbose +``` + +This example will create a new stateful managed service "testService2" with a target of 5 nodes. + +### Example 3 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService3" +PS C:\> $serviceName2 = "testService2" +PS C:\> $serviceTypeName = "testStateless" +PS C:\> $statefulService = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName2 +PS C:\> $statefulServiceCorrelation = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceCorrelation" -ArgumentList @("AlignedAffinity, $statefulService.Id) +PS C:\> New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Type $serviceTypeName -Stateless -InstanceCount 3 -PartitionSchemaSingleton -Correlation @($statefulServiceCorrelation) -Verbose +``` + +This example will create a new stateless managed service "testService3". + + +## PARAMETERS + +### -ApplicationName +Specify the name of the managed application. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Correlation +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: PSServiceCorrelation[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultMoveCost +Specify the default cost for a move. +Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster + +```yaml +Type: MoveCostEnum +Parameter Sets: (All) +Aliases: +Accepted values: Zero, Low, Medium, High + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DropSourceReplicaOnMove +Specify the drop source replica on move property for the managed service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Continue without prompts + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HasPersistedState +Specify the target replica set size for the managed service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HighKey +Specify the upper bound of the partition key range. + +```yaml +Type: Int64 +Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceCloseDelayDuration +Specify the instance close delay duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceCount +Specify the instance count for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LowKey +Specify the lower bound of the partition key range. + +```yaml +Type: Int64 +Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Metric +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: PSServiceMetric[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinInstanceCount +Specify the minimum instance count for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinInstancePercentage +Specify the minimum instance percentage for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinReplicaSetSize +Specify the min replica set size for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed service. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ServiceName + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PartitionCount +Specify the number of partitions. + +```yaml +Type: Int32 +Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PartitionNames +Indicates that the service uses the named partition scheme. +Services using this model usually have data that can be bucketed, within a bounded set. +Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries. + +```yaml +Type: String[] +Parameter Sets: Stateless-Named, Stateful-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PartitionSchemeNamed +Indicates that the service uses the named partition scheme. +Services using this model usually have data that can be bucketed, within a bounded set. +Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries. + +```yaml +Type: SwitchParameter +Parameter Sets: Stateless-Named, Stateful-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PartitionSchemeSingleton +Indicates that the service uses the singleton partition scheme. +Singleton partitions are typically used when the service does not require any additional routing. + +```yaml +Type: SwitchParameter +Parameter Sets: Stateless-Singleton, Stateful-Singleton +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PartitionSchemeUniformInt64 +Indicates that the service uses the UniformInt64 partition scheme. +This means that each partition owns a range of int64 keys. + +```yaml +Type: SwitchParameter +Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PlacementConstraint +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QuorumLossWaitDuration +Specify the quorum loss wait duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReplicaRestartWaitDuration +Specify the replica restart wait duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceDnsName +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServicePackageActivationMode +Specify the default cost for a move. +Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster + +```yaml +Type: ServicePackageActivationModeEnum +Parameter Sets: (All) +Aliases: +Accepted values: SharedProcess, ExclusiveProcess + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServicePlacementTimeLimit +Specify the service placement time limit for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StandByReplicaKeepDuration +Specify the stand by replica duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Stateful +Use for stateful service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Stateless +Use for stateless service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -TargetReplicaSetSize +Specify the target replica set size for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Type +Specify the service type name of the managed application, should exist in the application manifest. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ServiceType + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md index d33a53e4aa5e..3f1be9436d56 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md @@ -91,7 +91,7 @@ Accept wildcard characters: False Managed Cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md new file mode 100644 index 000000000000..7035faadceae --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md @@ -0,0 +1,251 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/remove-azservicefabricmanagedclusterapplication +schema: 2.0.0 +--- + +# Remove-AzServiceFabricManagedClusterApplication + +## SYNOPSIS +Remove an managed application from the cluster. This will remove all the managed services under the application. Only supports ARM deployed applications. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Remove-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] + [-Name] [-PassThru] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceId +``` +Remove-AzServiceFabricManagedClusterApplication -ResourceId [-PassThru] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Remove-AzServiceFabricManagedClusterApplication -InputObject [-PassThru] [-Force] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet removes an managed application form the cluster. This will remove all the managed services, if any, under the application resource. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> Remove-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName +``` + +This example removes the managed application "testApp" under the resource group "testRG" and cluster "testCluster". + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $app = Get-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName +PS C:\> $app | Remove-AzServiceFabricManagedClusterApplication +``` + +This example removes the managed application "testApp" under the resource group "testRG" and cluster "testCluster". + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp/services/testService" +PS C:\> Remove-AzServiceFabricManagedClusterApplication -ResourceId $resourceId +``` + +This example removes the managed application "testApp" with the ARM Resource ID specified. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Remove without prompt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed application resource. + +```yaml +Type: PSManagedApplication +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md new file mode 100644 index 000000000000..470fa05482fd --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md @@ -0,0 +1,237 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/remove-azservicefabricmanagedclusterapplicationtype +schema: 2.0.0 +--- + +# Remove-AzServiceFabricManagedClusterApplicationType + +## SYNOPSIS +Removes a managed application type from the cluster. This will remove all type versions under this resource. Only supports ARM deployed application types. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Remove-AzServiceFabricManagedClusterApplicationType [-ResourceGroupName] [-ClusterName] + [-Name ] [-PassThru] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceId +``` +Remove-AzServiceFabricManagedClusterApplicationType -ResourceId [-PassThru] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Remove-AzServiceFabricManagedClusterApplicationType -InputObject [-PassThru] + [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet removes an managed application type form the cluster and will remove all type versions under this resource, but all applications under it should be removed before running this command. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> Remove-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Verbose +``` + +This example will remove the managed application type "testAppType" and all the version under it. If there are any applications created with this type, the command will throw an exception. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $appType = Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName +PS C:\> $appType | Remove-AzServiceFabricManagedClusterApplicationType -Verbose +``` + +This example will remove the managed application type "testAppType" and all the version under it. If there are any applications created with this type, the command will throw an exception. + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType" +PS C:\> Remove-AzServiceFabricManagedClusterApplicationType -ResourceId $resourceId +``` + +This example will remove the managed application type details with the ARM Resource ID specified. + + +## PARAMETERS + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Remove without prompt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed application type resource. + +```yaml +Type: PSManagedApplicationType +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationTypeName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md new file mode 100644 index 000000000000..7818701b9cc8 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -0,0 +1,269 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/remove-azservicefabricmanagedclusterapplicationtypeversion +schema: 2.0.0 +--- + +# Remove-AzServiceFabricManagedClusterApplicationTypeVersion + +## SYNOPSIS +Removes a managed application type version from the cluster. Only supports ARM deployed application type versions. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Remove-AzServiceFabricManagedClusterApplicationTypeVersion [-ResourceGroupName] + [-ClusterName] -Name -Version [-PassThru] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Remove-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId [-PassThru] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Remove-AzServiceFabricManagedClusterApplicationTypeVersion -InputObject + [-PassThru] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +This cmdlet will remove a managed application type version from the cluster. All applications under this resource must be removed before running this command. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $version = "v1" +PS C:\> Remove-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $version -Force -PassThru -Verbose +``` + +This example will remove the managed version "v1" under the type "testAppType". It there are any applications under this resource the command will throw an exception. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $version = "v1" +PS C:\> $appTypeVersion = Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $appTypeVersion +PS C:\> $appTypeVersion | Remove-AzServiceFabricManagedClusterApplicationTypeVersion -Force -PassThru -Verbose +``` + +This example will remove the managed version "v1" under the type "testAppType". It there are any applications under this resource the command will throw an exception. + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType/versions/v1" +PS C:\> Remove-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId $resourceId +``` + +This example will remove the managed application type version details with the ARM Resource ID specified. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Remove without prompt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed application type version resource. + +```yaml +Type: PSManagedApplicationTypeVersion +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationTypeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application type version. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Version +Specify the managed application type version. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationTypeVersion + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md index 2e7f344cbd57..a55f7b01fb8b 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md @@ -123,7 +123,7 @@ Accept wildcard characters: False Managed cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster Parameter Sets: ClientCertByTpByObj, ClientCertByCnByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md new file mode 100644 index 000000000000..d720148802a3 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md @@ -0,0 +1,268 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/remove-azservicefabricmanagedclusterservice +schema: 2.0.0 +--- + +# Remove-AzServiceFabricManagedClusterService + +## SYNOPSIS +Remove a managed service from the cluster. Only supports ARM deployed services. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Remove-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] [-PassThru] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Remove-AzServiceFabricManagedClusterService -ResourceId [-PassThru] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Remove-AzServiceFabricManagedClusterService -InputObject [-PassThru] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet removes a managed service form the cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService1" +PS C:\> Remove-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName +``` + +This example will remove the managed service "testService1". + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService1" +PS C:\> $service = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName +PS C:\> $service | Remove-AzServiceFabricManagedClusterService +``` + +This example will remove the managed service testService1". + +### Example 3 +```powershell +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp/services/testService" +PS C:\> Remove-AzServiceFabricManagedClusterService -ResourceId $resourceId +``` + +This example will remove the managed service details with the ARM Resource ID specified. + +## PARAMETERS + +### -ApplicationName +Specify the name of the application. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Remove without prompt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed service resource. + +```yaml +Type: PSManagedService +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specify the name of the service. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ServiceName + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the service. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md index f2f506b9b78a..6dc504577929 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md @@ -166,7 +166,7 @@ Accept wildcard characters: False Node type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType Parameter Sets: DeleteNodeTypeByObj, DeleteNodeByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md index 92d8a1dbabd4..480c075d40ca 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md @@ -103,7 +103,7 @@ Accept wildcard characters: False Node type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md index 5fe4708b5bf2..8fff3a7437a8 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md @@ -157,7 +157,7 @@ Accept wildcard characters: False Managed Cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md new file mode 100644 index 000000000000..a8fcbda002b3 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md @@ -0,0 +1,589 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/set-azservicefabricmanagedclusterapplication +schema: 2.0.0 +--- + +# Set-AzServiceFabricManagedClusterApplication + +## SYNOPSIS +Update a service fabric managed application. This allows to update the application parameters and/or upgrade the application type version which will trigger an application upgrade or other configuration only updates. Only supports ARM deployed applications. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Set-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] + [-Name] [[-ApplicationTypeVersion] ] [-ApplicationParameter ] [-ForceRestart] + [-RecreateApplication] [-UpgradeReplicaSetCheckTimeoutSec ] [-InstanceCloseDelayDurationSec ] + [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] + [-HealthCheckWaitDurationSec ] [-HealthCheckStableDurationSec ] + [-UpgradeDomainTimeoutSec ] [-UpgradeTimeoutSec ] [-ConsiderWarningAsError] + [-DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService ] + [-DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition ] + [-DefaultServiceTypeUnhealthyServicesMaxPercent ] [-UnhealthyDeployedApplicationsMaxPercent ] + [-ServiceTypeHealthPolicyMap ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Set-AzServiceFabricManagedClusterApplication [[-ApplicationTypeVersion] ] + [-ApplicationParameter ] [-ForceRestart] [-RecreateApplication] + [-UpgradeReplicaSetCheckTimeoutSec ] [-InstanceCloseDelayDurationSec ] + [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] + [-HealthCheckWaitDurationSec ] [-HealthCheckStableDurationSec ] + [-UpgradeDomainTimeoutSec ] [-UpgradeTimeoutSec ] [-ConsiderWarningAsError] + [-DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService ] + [-DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition ] + [-DefaultServiceTypeUnhealthyServicesMaxPercent ] [-UnhealthyDeployedApplicationsMaxPercent ] + [-ServiceTypeHealthPolicyMap ] [-Tags ] -ResourceId [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Set-AzServiceFabricManagedClusterApplication [[-ApplicationTypeVersion] ] + [-ApplicationParameter ] [-ForceRestart] [-RecreateApplication] + [-UpgradeReplicaSetCheckTimeoutSec ] [-InstanceCloseDelayDurationSec ] + [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] + [-HealthCheckWaitDurationSec ] [-HealthCheckStableDurationSec ] + [-UpgradeDomainTimeoutSec ] [-UpgradeTimeoutSec ] [-ConsiderWarningAsError] + [-DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService ] + [-DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition ] + [-DefaultServiceTypeUnhealthyServicesMaxPercent ] [-UnhealthyDeployedApplicationsMaxPercent ] + [-ServiceTypeHealthPolicyMap ] [-Tags ] -InputObject [-Force] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet can be used to update application parameters and upgrade the application type version along with other configuration only updates. Updating the parameter will only change the model in ARM side, only when a new type version is used, the command will trigger an application upgrade. The type version specified should already be created in the cluster using **New-AzServiceFabricManagedClusterApplicationTypeVersion**. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $version = "v2" +PS C:\> $packageUrl = "https://sftestapp.blob.core.windows.net/sftestapp/testAppType_v2.sfpkg" +PS C:\> New-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName -Version $version -PackageUrl $packageUrl -Verbose +PS C:\> Set-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationTypeVersion $version -Name $appName -ApplicationParameter @{key0="value0";key1=$null;key2="value2"} -Tags @{tag0="updated"} +``` + +This example will start an managed application upgrade to update the type version to "v2" which was created with **New-AzServiceFabricManagedClusterApplicationTypeVersion**. The application parameters used should be defined in the application manifest. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> Set-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName -FailureAction Rollback -ForceRestart:$false -Verbose +``` + +This example will updates the FailureAction and sets ForceRestart to false. + +### Example 3 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $version = "v2" +PS C:\> $packageUrl = "https://sftestapp.blob.core.windows.net/sftestapp/testAppType_v2.sfpkg" +PS C:\> New-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName -Version $version -PackageUrl $packageUrl -Verbose +PS C:\> Set-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationTypeVersion $version -Name $appName -ApplicationParameter @{key0="value0";key1=$null;key2="value2"} -HealthCheckStableDurationSec 0 -HealthCheckWaitDurationSec 0 -HealthCheckRetryTimeoutSec 0 -UpgradeDomainTimeoutSec 5000 -UpgradeTimeoutSec 7000 -FailureAction Rollback -UpgradeReplicaSetCheckTimeoutSec 300 -ForceRestart +``` + +This example will start an application upgrade to update the type version to "v2" and also sets some upgrade policy parameters that will take effect from the current upgrade. + +### Example 4 +```powershell +PS C:\> Set-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appName -ApplicationParameter @{key0="value0";key1=$null;key2="value2"} +``` + +This example updates the application parameters but these changes will only take effect until the next version upgrade to the application. + + +## PARAMETERS + +### -ApplicationParameter +Specify the application parameters as key/value pairs. +These parameters must exist in the application manifest. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApplicationTypeVersion +Specify the application type version + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ConsiderWarningAsError +Indicates whether to treat a warning health event as an error event during health evaluation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService +Specifies the maximum percent of unhelthy partitions per service allowed by the health policy for the default service type to use for the monitored upgrade. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultServiceTypeMaxPercentUnhealthyReplicasPerPartition +Specifies the maximum percent of unhelthy replicas per service allowed by the health policy for the default service type to use for the monitored upgrade. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultServiceTypeUnhealthyServicesMaxPercent +Specifies the maximum percent of unhelthy services allowed by the health policy for the default service type to use for the monitored upgrade. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FailureAction +Specifies the action to take if the monitored upgrade fails. +The acceptable values for this parameter are Rollback or Manual. + +```yaml +Type: FailureAction +Parameter Sets: (All) +Aliases: +Accepted values: Rollback, Manual + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Continue without prompts + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ForceRestart +Indicates that the service host restarts even if the upgrade is a configuration-only change. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HealthCheckRetryTimeoutSec +Specifies the duration, in seconds, after which Service Fabric retries the health check if the previous health check fails. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HealthCheckStableDurationSec +Specifies the duration, in seconds, that Service Fabric waits in order to verify that the application is stable before moving to the next upgrade domain or completing the upgrade. +This wait duration prevents undetected changes of health right after the health check is performed. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HealthCheckWaitDurationSec +Specifies the duration, in seconds, that Service Fabric waits before it performs the initial health check after it finishes the upgrade on the upgrade domain. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed application resource. + +```yaml +Type: PSManagedApplication +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceCloseDelayDurationSec +Specifies the duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the application + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RecreateApplication +Determines whether the application should be recreated on update. +If value=true, the rest of the upgrade policy parameters are not allowed. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceTypeHealthPolicyMap +Specifies the map of the health policy to use for different service types as a hash table in the following format: @ {"ServiceTypeName" : "MaxPercentUnhealthyPartitionsPerService,MaxPercentUnhealthyReplicasPerPartition,MaxPercentUnhealthyServices"}. +For example: @{ "ServiceTypeName01" = "5,10,5"; "ServiceTypeName02" = "5,5,5" } + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -UnhealthyDeployedApplicationsMaxPercent +Specifies the maximum percentage of the application instances deployed on the nodes in the cluster that have a health state of error before the application health state for the cluster is error. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UpgradeDomainTimeoutSec +Specifies the maximum time, in seconds, that Service Fabric takes to upgrade a single upgrade domain. +After this period, the upgrade fails. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UpgradeMode +The mode used to monitor health during a rolling upgrade. +The values are Monitored, and UnmonitoredAuto. + +```yaml +Type: UpgradeMode +Parameter Sets: (All) +Aliases: +Accepted values: Monitored, UnmonitoredAuto + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UpgradeReplicaSetCheckTimeoutSec +Specifies the maximum time that Service Fabric waits for a service to reconfigure into a safe state, if not already in a safe state, before Service Fabric proceeds with the upgrade. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UpgradeTimeoutSec +Specifies the maximum time, in seconds, that Service Fabric takes for the entire upgrade. +After this period, the upgrade fails. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md new file mode 100644 index 000000000000..21a5ad42586d --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md @@ -0,0 +1,243 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/set-azservicefabricmanagedclusterapplicationtype +schema: 2.0.0 +--- + +# Set-AzServiceFabricManagedClusterApplicationType + +## SYNOPSIS +Update a service fabric managed application type. This allows you to update the tags. Only supports ARM deployed application types. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Set-AzServiceFabricManagedClusterApplicationType [-ResourceGroupName] [-ClusterName] + [-Name ] [-Tags ] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByInputObject +``` +Set-AzServiceFabricManagedClusterApplicationType [-Tags ] -InputObject + [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Set-AzServiceFabricManagedClusterApplicationType [-Tags ] -ResourceId [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet can be used to update application type tags. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $newTags = @{new="tags"} +PS C:\> Set-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Tags $newTags -Verbose +``` + +This example will update the managed application type "testAppType" tags. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $newTags = @{new="tags"} +PS C:\> $appType = Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName +PS C:\> $appType | Set-AzServiceFabricManagedClusterApplicationType -Tags $newTags -Verbose +``` + +This example will update the managed application type "testAppType" tags. + +### Example 3 +```powershell +PS C:\> $newTags = @{new="tags"} +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType" +PS C:\> Set-AzServiceFabricManagedClusterApplicationType -ResourceId $resourceId -Tags $newTags +``` + +This example will update the managed application type details with the ARM Resource ID specified. + +## PARAMETERS + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Remove without prompt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed application type resource. + +```yaml +Type: PSManagedApplicationType +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationTypeName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application type. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType + +## OUTPUTS + +### System.Boolean + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md new file mode 100644 index 000000000000..e6813a4a24fb --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -0,0 +1,292 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/set-azservicefabricmanagedclusterapplicationtypeversion +schema: 2.0.0 +--- + +# Set-AzServiceFabricManagedClusterApplicationTypeVersion + +## SYNOPSIS +Update a service fabric managed application type version. This allows you to update the tags and package Url. Only supports ARM deployed application type versions. + +## SYNTAX + +### ByResourceGroup (Default) +``` +Set-AzServiceFabricManagedClusterApplicationTypeVersion [-ResourceGroupName] [-ClusterName] + [-Name] [-Version] [-PackageUrl ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Set-AzServiceFabricManagedClusterApplicationTypeVersion [-PackageUrl ] [-Tags ] + -ResourceId [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByInputObject +``` +Set-AzServiceFabricManagedClusterApplicationTypeVersion [-PackageUrl ] [-Tags ] + -InputObject [-Force] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet can be used to update application type version tags. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $version = "v1" +PS C:\> $newTags = @{new="tags"} +PS C:\> $packageUrl = "https://sftestapp.blob.core.windows.net/sftestapp/testAppType_v1.sfpkg" +PS C:\> Set-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $version -Tags $newTags -PackageUrl $packageUrl -Verbose +``` + +This example will update the managed application type version "v1" tags and packageUrl. + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appTypeName = "testAppType" +PS C:\> $newTags = @{new="tags"} +PS C:\> $packageUrl = "https://sftestapp.blob.core.windows.net/sftestapp/testAppType_v1.sfpkg" +PS C:\> $appType = Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $version +PS C:\> $appType | Set-AzServiceFabricManagedClusterApplicationTypeVersion -Tags $newTags -PackageUrl $packageUrl -Verbose +``` + +This example will update the managed application type version "v1" tags and packageUrl. + +### Example 3 +```powershell +PS C:\> $newTags = @{new="tags"} +PS C:\> $packageUrl = "https://sftestapp.blob.core.windows.net/sftestapp/testAppType_v1.sfpkg" +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType/versions/v1" +PS C:\> Set-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId $resourceId -Tags $newTags -PackageUrl $packageUrl -Verbose +``` + +This example will update the managed application type details with the ARM Resource ID specified. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Continue without prompts + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed application type version resource. + +```yaml +Type: PSManagedApplicationTypeVersion +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed application type + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationTypeName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageUrl +Specify the url of the application package sfpkg file + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed application type version. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Version +Specify the managed application type version + +```yaml +Type: String +Parameter Sets: ByResourceGroup +Aliases: ApplicationTypeVersion + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md new file mode 100644 index 000000000000..7e67fbfd0e84 --- /dev/null +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md @@ -0,0 +1,634 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll-Help.xml +Module Name: Az.ServiceFabric +online version: https://docs.microsoft.com/powershell/module/az.servicefabric/set-azservicefabricmanagedclusterservice +schema: 2.0.0 +--- + +# Set-AzServiceFabricManagedClusterService + +## SYNOPSIS +Update a managed service from the cluster. Only supports ARM deployed services. + +## SYNTAX + +### Stateless-ByResourceGroup (Default) +``` +Set-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] [-Stateless] [-InstanceCount ] [-MinInstanceCount ] + [-MinInstancePercentage ] [-InstanceCloseDelayDuration ] [-DefaultMoveCost ] + [-PlacementConstraint ] [-Metric ] [-Correlation ] + [-ServiceDnsName ] [-ServicePackageActivationMode ] + [-Tags ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### Stateful-ByResourceGroup +``` +Set-AzServiceFabricManagedClusterService [-ResourceGroupName] [-ClusterName] + [-ApplicationName] [-Name] [-Stateful] [-TargetReplicaSetSize ] + [-MinReplicaSetSize ] [-HasPersistedState] [-DropSourceReplicaOnMove] + [-ReplicaRestartWaitDuration ] [-QuorumLossWaitDuration ] + [-StandByReplicaKeepDuration ] [-ServicePlacementTimeLimit ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### Stateless-ByResourceId +``` +Set-AzServiceFabricManagedClusterService -ResourceId [-Stateless] [-InstanceCount ] + [-MinInstanceCount ] [-MinInstancePercentage ] [-InstanceCloseDelayDuration ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### Stateful-ByResourceId +``` +Set-AzServiceFabricManagedClusterService -ResourceId [-Stateful] [-TargetReplicaSetSize ] + [-MinReplicaSetSize ] [-HasPersistedState] [-DropSourceReplicaOnMove] + [-ReplicaRestartWaitDuration ] [-QuorumLossWaitDuration ] + [-StandByReplicaKeepDuration ] [-ServicePlacementTimeLimit ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### Stateless-ByInputObject +``` +Set-AzServiceFabricManagedClusterService -InputObject [-Stateless] [-InstanceCount ] + [-MinInstanceCount ] [-MinInstancePercentage ] [-InstanceCloseDelayDuration ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### Stateful-ByInputObject +``` +Set-AzServiceFabricManagedClusterService -InputObject [-Stateful] + [-TargetReplicaSetSize ] [-MinReplicaSetSize ] [-HasPersistedState] [-DropSourceReplicaOnMove] + [-ReplicaRestartWaitDuration ] [-QuorumLossWaitDuration ] + [-StandByReplicaKeepDuration ] [-ServicePlacementTimeLimit ] + [-DefaultMoveCost ] [-PlacementConstraint ] [-Metric ] + [-Correlation ] [-ServiceDnsName ] + [-ServicePackageActivationMode ] [-Tags ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet updates a managed service form the cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService1" +PS C:\> Set-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Stateful -TargetReplicaSetSize 3 MinReplicaSetSize 5 -Verbose +``` + +This example will update the managed service "testService1". + +### Example 2 +```powershell +PS C:\> $resourceGroupName = "testRG" +PS C:\> $clusterName = "testCluster" +PS C:\> $appName = "testApp" +PS C:\> $serviceName = "testService1" +PS C:\> $instanceCloseDelayDuration = "00:11:00" +PS C:\> $minInstancePercentage = 20 +PS C:\> $minInstanceCount = 2 +PS C:\> $statelessServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceMetric" -ArgumentList @("metric1", "Low", 4) +PS C:\> $service = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName +PS C:\> $service | Set-AzServiceFabricManagedClusterService -Stateless -Metric @($statelessServiceMetric) -MinInstanceCount $minInstanceCount -InstanceCloseDelayDuration $instanceCloseDelayDuration -MinInstancePercentage $minInstancePercentage -Verbose +``` + +This example will remove the managed service testService1". + +### Example 3 +```powershell +PS C:\> $standByReplicaKeepDuration = "00:11:00" +PS C:\> $servicePlacementTimeLimit = "00:11:00" +PS C:\> $resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp/services/testService" +PS C:\> Set-AzServiceFabricManagedClusterService -ResourceId $resourceId -StandByReplicaKeepDuration $standByReplicaKeepDuration -ServicePlacementTimeLimit $servicePlacementTimeLimit -Verbose +``` + +This example will remove the managed service details with the ARM Resource ID specified. + +## PARAMETERS + +### -ApplicationName +Specify the name of the managed application. + +```yaml +Type: String +Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run cmdlet in the background and return a Job to track progress. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName +Specify the name of the cluster. + +```yaml +Type: String +Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Correlation +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: PSServiceCorrelation[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultMoveCost +Specify the default cost for a move. +Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster + +```yaml +Type: MoveCostEnum +Parameter Sets: (All) +Aliases: +Accepted values: Zero, Low, Medium, High + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DropSourceReplicaOnMove +Specify the drop source replica on move property for the managed service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Continue without prompts + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HasPersistedState +Specify the target replica set size for the managed service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed service resource. + +```yaml +Type: PSManagedService +Parameter Sets: Stateless-ByInputObject, Stateful-ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceCloseDelayDuration +Specify the instance close delay duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceCount +Specify the instance count for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Metric +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: PSServiceMetric[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinInstanceCount +Specify the minimum instance count for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinInstancePercentage +Specify the minimum instance percentage for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinReplicaSetSize +Specify the min replica set size for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specify the name of the managed service. + +```yaml +Type: String +Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup +Aliases: ServiceName + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PlacementConstraint +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QuorumLossWaitDuration +Specify the quorum loss wait duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReplicaRestartWaitDuration +Specify the replica restart wait duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specify the name of the resource group. + +```yaml +Type: String +Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the managed service. + +```yaml +Type: String +Parameter Sets: Stateless-ByResourceId, Stateful-ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceDnsName +Specify the placement constraints of the managed service, as a string. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServicePackageActivationMode +Specify the default cost for a move. +Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster + +```yaml +Type: ServicePackageActivationModeEnum +Parameter Sets: (All) +Aliases: +Accepted values: SharedProcess, ExclusiveProcess + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServicePlacementTimeLimit +Specify the service placement time limit for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StandByReplicaKeepDuration +Specify the stand by replica duration for the managed service. +Duration represented in ISO 8601 format 'hh:mm:ss' + +```yaml +Type: TimeSpan +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Stateful +Use for stateful service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Stateless +Use for stateless service + +```yaml +Type: SwitchParameter +Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tags +Specify the tags as key/value pairs. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -TargetReplicaSetSize +Specify the target replica set size for the managed service + +```yaml +Type: Int32 +Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService + +## NOTES + +## RELATED LINKS diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md index 95323ec2c152..94b367d3e13c 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md @@ -243,7 +243,7 @@ Accept wildcard characters: False Node type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType Parameter Sets: ByObj, ReimageByObj Aliases: From 935b2b272f2b7e593ddd4714512db59a9c06d99a Mon Sep 17 00:00:00 2001 From: Alfredo Santamaria Date: Mon, 8 Mar 2021 13:31:51 -0800 Subject: [PATCH 13/13] Fix StaticAnalysis BreakingChange and Signature issues * remove .ManagedClusters from models namespace * regenerate help * Rename UpgradeMode to ApplicationUpgradeMode * suppress managed clusters breaking changes as it is in preview (#2) * Fix static analysis signature issues * fix breaking changes exceptions (#3) * adding missing header * fixing breakingChangeIssues file * add missing braking changes * remove duplicates from braking exceptions * fix app tests * Change Tags to singular for application Co-authored-by: Alfredo Santamaria Gomez --- ...eFabricManagedClustersApplicationTests.ps1 | 4 +- ...ricManagedClusterApplicationTypeVersion.cs | 2 +- ...ricManagedClusterApplicationTypeVersion.cs | 6 +- ...ricManagedClusterApplicationTypeVersion.cs | 2 +- ...ricManagedClusterApplicationTypeVersion.cs | 8 +- ...viceFabricManagedClusterApplicationType.cs | 2 +- ...viceFabricManagedClusterApplicationType.cs | 6 +- ...viceFabricManagedClusterApplicationType.cs | 2 +- ...viceFabricManagedClusterApplicationType.cs | 8 +- ...zServiceFabricManagedClusterApplication.cs | 2 +- ...zServiceFabricManagedClusterApplication.cs | 6 +- ...zServiceFabricManagedClusterApplication.cs | 2 +- ...zServiceFabricManagedClusterApplication.cs | 10 +-- ...ceFabricManagedClusterClientCertificate.cs | 2 +- .../GetAzServiceFabricManagedCluster.cs | 2 +- .../NewAzServiceFabricManagedCluster.cs | 2 +- .../RemoveAzServiceFabricManagedCluster.cs | 2 +- ...ceFabricManagedClusterClientCertificate.cs | 2 +- .../SetAzServiceFabricManagedCluster.cs | 2 +- ...ServiceFabricManagedNodeTypeVMExtension.cs | 2 +- ...dAzServiceFabricManagedNodeTypeVMSecret.cs | 2 +- .../GetAzServiceFabricManagedNodeType.cs | 2 +- .../NewAzServiceFabricManagedNodeType.cs | 2 +- .../RemoveAzServiceFabricManagedNodeType.cs | 2 +- ...ServiceFabricManagedNodeTypeVMExtension.cs | 2 +- .../SetAzServiceFabricManagedNodeType.cs | 2 +- ...GetAzServiceFabricManagedClusterService.cs | 2 +- ...NewAzServiceFabricManagedClusterService.cs | 9 +- ...oveAzServiceFabricManagedClusterService.cs | 2 +- ...SetAzServiceFabricManagedClusterService.cs | 7 +- ...gradeMode.cs => ApplicationUpgradeMode.cs} | 4 +- .../ManagedClusters/ManagedClusterSku.cs | 2 +- .../ManagedClusters/PSManagedApplication.cs | 2 +- .../PSManagedApplicationType.cs | 2 +- .../PSManagedApplicationTypeVersion.cs | 2 +- .../ManagedClusters/PSManagedCluster.cs | 2 +- .../ManagedClusters/PSManagedNodeType.cs | 2 +- .../ManagedClusters/PSManagedService.cs | 2 +- .../ManagedClusters/PSServiceCorrelation.cs | 2 +- .../Models/ManagedClusters/PSServiceMetric.cs | 2 +- .../ServicePackageActivationModeEnum.cs | 2 +- ...ceFabricManagedClusterClientCertificate.md | 2 +- ...-AzServiceFabricManagedNodeTypeVMSecret.md | 2 +- .../ServiceFabric/help/Az.ServiceFabric.md | 48 ++++++++++ ...zServiceFabricManagedClusterApplication.md | 13 ++- ...viceFabricManagedClusterApplicationType.md | 12 +-- ...ricManagedClusterApplicationTypeVersion.md | 15 ++-- ...et-AzServiceFabricManagedClusterService.md | 14 +-- .../help/New-AzServiceFabricManagedCluster.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 28 +++--- ...viceFabricManagedClusterApplicationType.md | 17 ++-- ...ricManagedClusterApplicationTypeVersion.md | 25 +++--- ...ew-AzServiceFabricManagedClusterService.md | 85 +++++++++--------- .../Remove-AzServiceFabricManagedCluster.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 24 ++--- ...viceFabricManagedClusterApplicationType.md | 23 +++-- ...ricManagedClusterApplicationTypeVersion.md | 26 +++--- ...ceFabricManagedClusterClientCertificate.md | 2 +- ...ve-AzServiceFabricManagedClusterService.md | 28 +++--- .../Remove-AzServiceFabricManagedNodeType.md | 2 +- ...ServiceFabricManagedNodeTypeVMExtension.md | 2 +- .../help/Set-AzServiceFabricManagedCluster.md | 2 +- ...zServiceFabricManagedClusterApplication.md | 71 ++++++++------- ...viceFabricManagedClusterApplicationType.md | 24 ++--- ...ricManagedClusterApplicationTypeVersion.md | 30 +++---- ...et-AzServiceFabricManagedClusterService.md | 70 +++++++-------- .../Set-AzServiceFabricManagedNodeType.md | 2 +- .../Az.ServiceFabric/BreakingChangeIssues.csv | 89 +++++++++++++++++++ .../Az.ServiceFabric/SignatureIssues.csv | 2 + 69 files changed, 461 insertions(+), 331 deletions(-) rename src/ServiceFabric/ServiceFabric/Models/ManagedClusters/{UpgradeMode.cs => ApplicationUpgradeMode.cs} (89%) create mode 100644 tools/StaticAnalysis/Exceptions/Az.ServiceFabric/BreakingChangeIssues.csv diff --git a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 index cee816d725f2..7a9d6b416c98 100644 --- a/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 +++ b/src/ServiceFabric/ServiceFabric.Test/ScenarioTests/ServiceFabricManagedClustersApplicationTests.ps1 @@ -55,7 +55,7 @@ function Test-ManagedAppType $tags = @{"test"="tag"} - $appType = $appTypeFromGet | Set-AzServiceFabricManagedClusterApplicationType -Tags $tags -Verbose + $appType = $appTypeFromGet | Set-AzServiceFabricManagedClusterApplicationType -Tag $tags -Verbose Assert-AreEqual "Succeeded" $appType.ProvisioningState $appTypeFromGet = Get-AzServiceFabricManagedClusterApplicationType -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName @@ -103,7 +103,7 @@ function Test-ManagedAppTypeVersion $tags = @{"test"="tag"} - $appTypeVersion = $appTypeVersionFromGet | Set-AzServiceFabricManagedClusterApplicationTypeVersion -Tags $tags -Verbose + $appTypeVersion = $appTypeVersionFromGet | Set-AzServiceFabricManagedClusterApplicationTypeVersion -Tag $tags -Verbose Assert-AreEqual "Succeeded" $appTypeVersion.ProvisioningState $appTypeVersionFromGet = Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $appTypeName -Version $v1 diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs index 9e3ebd7ce0a6..a983565a3ea2 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs index 78ef2bd91f20..9a87b776bcc4 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; @@ -57,7 +57,7 @@ public class NewAzServiceFabricManagedClustersApplicationTypeVersion : ManagedAp public string PackageUrl { get; set; } [Parameter(Mandatory = false, ValueFromPipeline = true, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] public SwitchParameter Force { get; set; } @@ -87,7 +87,7 @@ public override void ExecuteCmdlet() location: cluster.Location, packageUrl: this.PackageUrl, force: this.Force.IsPresent, - tags: this.Tags); + tags: this.Tag); WriteObject(new PSManagedApplicationTypeVersion(managedAppTypeVersion), false); } } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs index 5c08ed621a25..4e14b820a600 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs index 7a3dd0ada3e4..37f2cc3807b2 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs @@ -18,7 +18,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -69,7 +69,7 @@ public class SetAzServiceFabricManagedClustersApplicationTypeVersion : ManagedAp [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroup, HelpMessage = "Specify the tags as key/value pairs.")] [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceId, HelpMessage = "Specify the tags as key/value pairs.")] [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByInputObject, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, HelpMessage = "Arm ResourceId of the managed application type version.")] @@ -154,9 +154,9 @@ private ApplicationTypeVersionResource GetUpdatedAppTypeVersionParams(Applicatio { currentAppTypeVersion.AppPackageUrl = this.PackageUrl; } - if (this.IsParameterBound(c => c.Tags)) + if (this.IsParameterBound(c => c.Tag)) { - currentAppTypeVersion.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + currentAppTypeVersion.Tags = this.Tag?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); } return currentAppTypeVersion; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs index 2190413018cc..31f104ab82c2 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs index b48cc82dc58f..00d32b0d781e 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs @@ -14,7 +14,7 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; using System; @@ -46,7 +46,7 @@ public class NewAzServiceFabricManagedClusterApplicationType : ManagedApplicatio public string Name { get; set; } [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } #endregion public override void ExecuteCmdlet() @@ -63,7 +63,7 @@ public override void ExecuteCmdlet() } else { - var appType = CreateManagedApplicationType(this.Name, cluster.Location, this.Tags); + var appType = CreateManagedApplicationType(this.Name, cluster.Location, this.Tag); WriteObject(new PSManagedApplicationType(appType), false); } } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs index 392a2dd9a388..b6c2ba2f051a 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs index 4d425edfcb10..d186cf9da665 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -53,7 +53,7 @@ public class SetAzServiceFabricManagedClusterApplicationType : ManagedApplicatio [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceGroup, HelpMessage = "Specify the tags as key/value pairs.")] [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByInputObject, HelpMessage = "Specify the tags as key/value pairs.")] [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ByResourceId, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, HelpMessage = "Arm ResourceId of the managed application type.")] @@ -130,8 +130,8 @@ private ApplicationTypeResource GetUpdatedAppTypeParams(ApplicationTypeResource } - if (this.IsParameterBound(c => c.Tags)) { - currentAppType.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + if (this.IsParameterBound(c => c.Tag)) { + currentAppType.Tags = this.Tag?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); } return currentAppType; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs index e26cc964a52c..6578cbc25118 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs index e5beb8bdc137..bdb0d4686765 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs @@ -18,7 +18,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; @@ -85,7 +85,7 @@ public class NewAzServiceFabricManagedClusterApplication : ManagedApplicationCmd [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = SkipAppTypeVersion, HelpMessage = "Specify the tags as key/value pairs.")] [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = CreateAppTypeVersion, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] public SwitchParameter Force { get; set; } @@ -168,7 +168,7 @@ private ApplicationResource GetNewAppParameters(string location) version: this.GetAppTypeArmResourceId(this.DefaultContext.Subscription.Id, this.ResourceGroupName, this.ClusterName, this.ApplicationTypeName, this.ApplicationTypeVersion), parameters: this.ApplicationParameter?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string), location: location, - tags: this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string)); + tags: this.Tag?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string)); } private string GetAppTypeArmResourceId(string subscriptionId, string resourceGroup, string clusterName, string appTypeName, string appTypeVersion) diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs index e6f5aeb8c587..03201ed619d9 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs index dec181b2feec..055cd6ed5608 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs @@ -19,7 +19,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -124,7 +124,7 @@ public class SetAzServiceFabricManagedClusterApplication : ManagedApplicationCmd HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")] [Parameter(Mandatory = false, ParameterSetName = ByInputObject, HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")] - public UpgradeMode UpgradeMode { get; set; } + public ApplicationUpgradeMode UpgradeMode { get; set; } #region RollingUpgradeMonitoringPolicy @@ -242,7 +242,7 @@ public class SetAzServiceFabricManagedClusterApplication : ManagedApplicationCmd #endregion [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = true, ParameterSetName = ByResourceId, ValueFromPipelineByPropertyName = true, HelpMessage = "Arm ResourceId of the managed application.")] @@ -332,9 +332,9 @@ private ApplicationResource GetUpdatedAppParams(ApplicationResource inputObject currentApp.Parameters = this.ApplicationParameter?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); } - if (this.IsParameterBound(c => c.Tags)) + if (this.IsParameterBound(c => c.Tag)) { - currentApp.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + currentApp.Tags = this.Tag?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); } currentApp.UpgradePolicy = SetUpgradePolicy(currentApp.UpgradePolicy); diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs index c07a46672ff5..24a7ed7371d2 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs index 6fd3b226d25c..5e94185edc52 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs index ecc097f9c67c..8c7d4a60b7cc 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs @@ -17,7 +17,7 @@ using System.Security; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.Internal.Resources.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs index e87a40c44d36..56ba34d3fba5 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs @@ -15,7 +15,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs index 1ac6466f720c..f0d2e8571698 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs index a8f176c5500f..03076896d3ba 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs @@ -15,7 +15,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs index 421625c45b33..643bb3574402 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs index c4fa389e577d..0d58c2bd76b7 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs index 9cf0ec65e865..99ce848e86a5 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs index ee777c1305d2..87580632e66a 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs index d7a5db3effb4..9ac21abcd63a 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs @@ -15,7 +15,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs index aa8bbfffa8e2..df5b728437e9 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs index 6f2f28a4c1df..e6482fa840d7 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs index 44dcbcc73830..f0ce1403dc33 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs @@ -17,7 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; using Microsoft.Azure.Management.ServiceFabricManagedClusters; namespace Microsoft.Azure.Commands.ServiceFabric.Commands diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs index 5eafd8c024fc..18187dade4be 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs @@ -19,7 +19,6 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; using Microsoft.Azure.Commands.ServiceFabric.Models; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; @@ -345,7 +344,7 @@ public class NewAzServiceFabricManagedClusterService : ManagedApplicationCmdletB public ServicePackageActivationModeEnum ServicePackageActivationMode { get; set; } [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] public SwitchParameter Force { get; set; } @@ -407,7 +406,7 @@ public class NewAzServiceFabricManagedClusterService : ManagedApplicationCmdletB HelpMessage = "Indicates that the service uses the named partition scheme. Services using this model usually have data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.")] [Parameter(Mandatory = true, ParameterSetName = StatefulNamed, HelpMessage = "Indicates that the service uses the named partition scheme. Services using this model usually have data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.")] - public string[] PartitionNames { get; set; } + public string[] PartitionName { get; set; } #endregion #endregion @@ -478,7 +477,7 @@ private ServiceResource GetNewServiceParameters(string location) { ServiceResource service = new ServiceResource() { - Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string), + Tags = this.Tag?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string), Location = location, Properties = new ServiceResourceProperties() }; @@ -600,7 +599,7 @@ private Partition SetPartitionDescription() return new UniformInt64RangePartitionScheme(this.PartitionCount, this.LowKey, this.HighKey); case StatelessNamed: case StatefulNamed: - return new NamedPartitionScheme(this.PartitionNames); + return new NamedPartitionScheme(this.PartitionName); default: throw new PSArgumentException("Invalid ParameterSetName"); } diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs index 2b208d7c92c0..45e7d34f84bb 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; +using Microsoft.Azure.Commands.ServiceFabric.Models; namespace Microsoft.Azure.Commands.ServiceFabric.Commands { diff --git a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs index 6a16d761adc9..996b75a7eba3 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs @@ -19,7 +19,6 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ServiceFabric.Common; using Microsoft.Azure.Commands.ServiceFabric.Models; -using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.ServiceFabricManagedClusters; using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; @@ -310,7 +309,7 @@ public class SetAzServiceFabricManagedClusterService : ManagedApplicationCmdletB public ServicePackageActivationModeEnum ServicePackageActivationMode { get; set; } [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Specify the tags as key/value pairs.")] - public Hashtable Tags { get; set; } + public Hashtable Tag { get; set; } [Parameter(Mandatory = false, HelpMessage = "Continue without prompts")] public SwitchParameter Force { get; set; } @@ -387,9 +386,9 @@ private ServiceResource GetUpdatedServiceParams(ServiceResource inputObject = nu WriteVerbose($"Updating managed service '{this.Name}.'"); - if (this.IsParameterBound(c => c.Tags)) + if (this.IsParameterBound(c => c.Tag)) { - currentService.Tags = this.Tags?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); + currentService.Tags = this.Tag?.Cast().ToDictionary(d => d.Key as string, d => d.Value as string); } ServiceResourceProperties properties = currentService.Properties; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ApplicationUpgradeMode.cs similarity index 89% rename from src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs rename to src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ApplicationUpgradeMode.cs index 85b4fb0ca9cc..2f294300038d 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ApplicationUpgradeMode.cs @@ -12,9 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { - public enum UpgradeMode + public enum ApplicationUpgradeMode { Monitored, UnmonitoredAuto diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs index 1b0a645fdb69..ee2a6d3dc9f7 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs @@ -11,7 +11,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { public enum ManagedClusterSku { diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs index 5b8790db4f92..a76d107aa686 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs index f1091656275f..da1984a59da2 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs index 538f52db55a2..a5c8ddcbec55 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs index 02ee833bdcf9..6ad93238415e 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs @@ -14,7 +14,7 @@ using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { public class PSManagedCluster : ManagedCluster { diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs index ba122b5ad400..1a361a1530f5 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs @@ -14,7 +14,7 @@ using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { public class PSManagedNodeType : NodeType { diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs index 3e5ab29e278d..2a8db0a05c25 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs index 9a55c41a4bd3..04a8e10bc7ae 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs index 5fe9942269f3..e385e3cfc362 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models; diff --git a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs index bc726408d6c3..65087eb395b2 100644 --- a/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs +++ b/src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters +namespace Microsoft.Azure.Commands.ServiceFabric.Models { public enum ServicePackageActivationModeEnum { diff --git a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md index 9bfdfac73e12..c0b04ed67c44 100644 --- a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md +++ b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md @@ -139,7 +139,7 @@ Accept wildcard characters: False Managed cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster Parameter Sets: ClientCertByTpByObj, ClientCertByCnByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md index 954dee495288..70ca75ad81a4 100644 --- a/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md +++ b/src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md @@ -137,7 +137,7 @@ Accept wildcard characters: False Node Type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Az.ServiceFabric.md b/src/ServiceFabric/ServiceFabric/help/Az.ServiceFabric.md index 541ec5d68ca0..47131c441547 100644 --- a/src/ServiceFabric/ServiceFabric/help/Az.ServiceFabric.md +++ b/src/ServiceFabric/ServiceFabric/help/Az.ServiceFabric.md @@ -47,6 +47,18 @@ Get the cluster resource details. ### [Get-AzServiceFabricManagedCluster](Get-AzServiceFabricManagedCluster.md) Get the managed cluster resource details. +### [Get-AzServiceFabricManagedClusterApplication](Get-AzServiceFabricManagedClusterApplication.md) +Get Service Fabric managed application details. Only supports ARM deployed applications. + +### [Get-AzServiceFabricManagedClusterApplicationType](Get-AzServiceFabricManagedClusterApplicationType.md) +Get Service Fabric managed application type details. Only supports ARM deployed application types. + +### [Get-AzServiceFabricManagedClusterApplicationTypeVersion](Get-AzServiceFabricManagedClusterApplicationTypeVersion.md) +Get Service Fabric managed application type version details. Only supports ARM deployed application type versions. + +### [Get-AzServiceFabricManagedClusterService](Get-AzServiceFabricManagedClusterService.md) +Get Service Fabric managed service details under the specified application and cluster. Only supports ARM deployed services. + ### [Get-AzServiceFabricManagedNodeType](Get-AzServiceFabricManagedNodeType.md) Get the managed node type resource details. @@ -68,6 +80,18 @@ This command uses certificates that you provide or system generated self-signed ### [New-AzServiceFabricManagedCluster](New-AzServiceFabricManagedCluster.md) Create new managed cluster. +### [New-AzServiceFabricManagedClusterApplication](New-AzServiceFabricManagedClusterApplication.md) +Create new service fabric managed application under the specified resource group and cluster. + +### [New-AzServiceFabricManagedClusterApplicationType](New-AzServiceFabricManagedClusterApplicationType.md) +Create new service fabric managed application type under the specified resource group and cluster. + +### [New-AzServiceFabricManagedClusterApplicationTypeVersion](New-AzServiceFabricManagedClusterApplicationTypeVersion.md) +Create new managed application type version under the specified resource group and cluster. + +### [New-AzServiceFabricManagedClusterService](New-AzServiceFabricManagedClusterService.md) +Create new service fabric managed service under the specified application and cluster. + ### [New-AzServiceFabricManagedNodeType](New-AzServiceFabricManagedNodeType.md) Create new node type resource. @@ -92,9 +116,21 @@ Remove a cluster certificate from being used for cluster security. ### [Remove-AzServiceFabricManagedCluster](Remove-AzServiceFabricManagedCluster.md) Remove cluster resource. +### [Remove-AzServiceFabricManagedClusterApplication](Remove-AzServiceFabricManagedClusterApplication.md) +Remove an managed application from the cluster. This will remove all the managed services under the application. Only supports ARM deployed applications. + +### [Remove-AzServiceFabricManagedClusterApplicationType](Remove-AzServiceFabricManagedClusterApplicationType.md) +Removes a managed application type from the cluster. This will remove all type versions under this resource. Only supports ARM deployed application types. + +### [Remove-AzServiceFabricManagedClusterApplicationTypeVersion](Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md) +Removes a managed application type version from the cluster. Only supports ARM deployed application type versions. + ### [Remove-AzServiceFabricManagedClusterClientCertificate](Remove-AzServiceFabricManagedClusterClientCertificate.md) Remvoe client certificate by thumbprint or common name. +### [Remove-AzServiceFabricManagedClusterService](Remove-AzServiceFabricManagedClusterService.md) +Remove a managed service from the cluster. Only supports ARM deployed services. + ### [Remove-AzServiceFabricManagedNodeType](Remove-AzServiceFabricManagedNodeType.md) Remove the node type or specific nodes within the node type. @@ -119,6 +155,18 @@ Restart specific nodes from the node type. ### [Set-AzServiceFabricManagedCluster](Set-AzServiceFabricManagedCluster.md) Set cluster resource properties. +### [Set-AzServiceFabricManagedClusterApplication](Set-AzServiceFabricManagedClusterApplication.md) +Update a service fabric managed application. This allows to update the application parameters and/or upgrade the application type version which will trigger an application upgrade or other configuration only updates. Only supports ARM deployed applications. + +### [Set-AzServiceFabricManagedClusterApplicationType](Set-AzServiceFabricManagedClusterApplicationType.md) +Update a service fabric managed application type. This allows you to update the tags. Only supports ARM deployed application types. + +### [Set-AzServiceFabricManagedClusterApplicationTypeVersion](Set-AzServiceFabricManagedClusterApplicationTypeVersion.md) +Update a service fabric managed application type version. This allows you to update the tags and package Url. Only supports ARM deployed application type versions. + +### [Set-AzServiceFabricManagedClusterService](Set-AzServiceFabricManagedClusterService.md) +Update a managed service from the cluster. Only supports ARM deployed services. + ### [Set-AzServiceFabricManagedNodeType](Set-AzServiceFabricManagedNodeType.md) Sets node type resource properties or run reimage actions on specific ndes of the node type with -Reimage parameter. diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md index 914ad4e68d07..a849bf3e9563 100644 --- a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplication.md @@ -62,14 +62,13 @@ PS C:\> Get-AzServiceFabricManagedClusterApplication -ResourceId $resourceId This example will get the managed application details with the ARM Resource ID specified, if it doesn't find the resource it will throw an exception. - ## PARAMETERS ### -ClusterName Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -84,7 +83,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -99,7 +98,7 @@ Accept wildcard characters: False Specify the name of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: ApplicationName @@ -114,7 +113,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -129,7 +128,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -149,7 +148,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md index d906295ed1ff..66c6532c54f3 100644 --- a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationType.md @@ -68,7 +68,7 @@ This example will get the managed application type details with the ARM Resource Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -83,7 +83,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -98,7 +98,7 @@ Accept wildcard characters: False Specify the name of the managed application type ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: ApplicationTypeName @@ -113,7 +113,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -128,7 +128,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -148,7 +148,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md index b42a193ec7ff..5d1c98c4e77c 100644 --- a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -64,14 +64,13 @@ PS C:\> Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId $res This example will get the managed application type version details with the ARM Resource ID specified, if it doesn't find the resource it will throw an exception. - ## PARAMETERS ### -ClusterName Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByVersion Aliases: @@ -86,7 +85,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -101,7 +100,7 @@ Accept wildcard characters: False Specify the name of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByVersion Aliases: ApplicationTypeName @@ -116,7 +115,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByVersion Aliases: @@ -131,7 +130,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application type version. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -146,7 +145,7 @@ Accept wildcard characters: False Specify the version of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByVersion Aliases: ApplicationTypeVersion @@ -166,7 +165,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md index cea35855f4ec..907526173bd7 100644 --- a/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md +++ b/src/ServiceFabric/ServiceFabric/help/Get-AzServiceFabricManagedClusterService.md @@ -70,7 +70,7 @@ This example will get the managed service details with the ARM Resource ID speci Specify the name of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -85,7 +85,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -100,7 +100,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -115,7 +115,7 @@ Accept wildcard characters: False Specify the name of the managed service. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: ServiceName @@ -130,7 +130,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroupAndCluster, ByName Aliases: @@ -145,7 +145,7 @@ Accept wildcard characters: False Arm ResourceId of the managed service. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -165,7 +165,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md index 3475650faec1..1cd58a676ab2 100644 --- a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedCluster.md @@ -308,7 +308,7 @@ Accept wildcard characters: False Cluster's Sku, the options are Basic: it will have a minimum of 3 seed nodes and only allows 1 node type and Standard: it will have a minimum of 5 seed nodes and allows multiple node types. ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.ManagedClusterSku +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusterSku Parameter Sets: (All) Aliases: Accepted values: Basic, Standard diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md index 9bf16992d372..9ac03c6e54c2 100644 --- a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplication.md @@ -67,7 +67,7 @@ Specify the application parameters as key/value pairs. These parameters must exist in the application manifest. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -82,7 +82,7 @@ Accept wildcard characters: False Specify the name of the managed application type ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -97,7 +97,7 @@ Accept wildcard characters: False Specify the managed application type version ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -112,7 +112,7 @@ Accept wildcard characters: False Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -127,7 +127,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -142,7 +142,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -157,7 +157,7 @@ Accept wildcard characters: False Continue without prompts ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -172,7 +172,7 @@ Accept wildcard characters: False Specify the name of the managed application ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ApplicationName @@ -187,7 +187,7 @@ Accept wildcard characters: False Specify the url of the application package sfpkg file ```yaml -Type: String +Type: System.String Parameter Sets: CreateAppTypeVersion Aliases: @@ -202,7 +202,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -217,7 +217,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -232,7 +232,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -248,7 +248,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -270,7 +270,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md index 30b5b7741b3e..53d2b680b93a 100644 --- a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationType.md @@ -33,14 +33,13 @@ PS C:\> $appType = New-AzServiceFabricManagedClusterApplicationType -ResourceGro This example will create a new managed application type "testAppType" under the resource group and cluster specified. - ## PARAMETERS ### -ClusterName Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -55,7 +54,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -70,7 +69,7 @@ Accept wildcard characters: False Specify the name of the application type ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ApplicationTypeName @@ -85,7 +84,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -100,7 +99,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -115,7 +114,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -131,7 +130,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -153,7 +152,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md index f3bbe4002e6e..f57a10992dfb 100644 --- a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -35,14 +35,13 @@ PS C:\> New-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceGroupNa This example will create an managed application type version "v1" under type "testAppType". The version in the application manifest contained in the package should have the same version as the one specified in -Version. - ## PARAMETERS ### -AsJob Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -57,7 +56,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -72,7 +71,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -87,7 +86,7 @@ Accept wildcard characters: False Continue without prompts ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -102,7 +101,7 @@ Accept wildcard characters: False Specify the name of the managed application type ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ApplicationTypeName @@ -117,7 +116,7 @@ Accept wildcard characters: False Specify the url of the application package sfpkg file ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -132,7 +131,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -147,7 +146,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -162,7 +161,7 @@ Accept wildcard characters: False Specify the managed application type version ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ApplicationTypeVersion @@ -177,7 +176,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -193,7 +192,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -215,7 +214,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md index c7b93f820a8f..77cad74579bc 100644 --- a/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md +++ b/src/ServiceFabric/ServiceFabric/help/New-AzServiceFabricManagedClusterService.md @@ -102,7 +102,7 @@ PS C:\> $clusterName = "testCluster" PS C:\> $appName = "testApp" PS C:\> $serviceName = "testService1" PS C:\> $serviceTypeName = "testStateless" -PS C:\> $statelessServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceMetric" -ArgumentList @("metric1", "Low", 4) +PS C:\> $statelessServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric" -ArgumentList @("metric1", "Low", 4) PS C:\> New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Type $serviceTypeName -Stateless -InstanceCount -1 -PartitionSchemaSingleton -Metric @($statelessServiceMetric) -Verbose ``` @@ -118,7 +118,7 @@ PS C:\> $serviceTypeName = "testStatefulType" PS C:\> $partitionCount = 5 PS C:\> $partitionLowKey = 0 PS C:\> $partitionHighKey = 25 -PS C:\> $statefulServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceMetric" -ArgumentList @("metric2", "Medium", 4, 2) +PS C:\> $statefulServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric" -ArgumentList @("metric2", "Medium", 4, 2) PS C:\> New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Type $serviceTypeName -Stateful -TargetReplicaSetSize 5 -MinReplicaSetSize 3 -Metric @($statefulServiceMetric) -PartitionSchemeUniformInt64 -PartitionCount $partitionCount -LowKey $partitionLowKey -HighKey $partitionHighKey -Verbose ``` @@ -133,20 +133,19 @@ PS C:\> $serviceName = "testService3" PS C:\> $serviceName2 = "testService2" PS C:\> $serviceTypeName = "testStateless" PS C:\> $statefulService = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName2 -PS C:\> $statefulServiceCorrelation = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceCorrelation" -ArgumentList @("AlignedAffinity, $statefulService.Id) +PS C:\> $statefulServiceCorrelation = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation" -ArgumentList @("AlignedAffinity, $statefulService.Id) PS C:\> New-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -Name $serviceName -Type $serviceTypeName -Stateless -InstanceCount 3 -PartitionSchemaSingleton -Correlation @($statefulServiceCorrelation) -Verbose ``` This example will create a new stateless managed service "testService3". - ## PARAMETERS ### -ApplicationName Specify the name of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -161,7 +160,7 @@ Accept wildcard characters: False Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -176,7 +175,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -191,7 +190,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: PSServiceCorrelation[] +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[] Parameter Sets: (All) Aliases: @@ -207,7 +206,7 @@ Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster ```yaml -Type: MoveCostEnum +Type: Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum Parameter Sets: (All) Aliases: Accepted values: Zero, Low, Medium, High @@ -223,7 +222,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -238,7 +237,7 @@ Accept wildcard characters: False Specify the drop source replica on move property for the managed service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -253,7 +252,7 @@ Accept wildcard characters: False Continue without prompts ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -268,7 +267,7 @@ Accept wildcard characters: False Specify the target replica set size for the managed service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -283,7 +282,7 @@ Accept wildcard characters: False Specify the upper bound of the partition key range. ```yaml -Type: Int64 +Type: System.Int64 Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range Aliases: @@ -299,7 +298,7 @@ Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named Aliases: @@ -314,7 +313,7 @@ Accept wildcard characters: False Specify the instance count for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named Aliases: @@ -329,7 +328,7 @@ Accept wildcard characters: False Specify the lower bound of the partition key range. ```yaml -Type: Int64 +Type: System.Int64 Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range Aliases: @@ -344,7 +343,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: PSServiceMetric[] +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[] Parameter Sets: (All) Aliases: @@ -359,7 +358,7 @@ Accept wildcard characters: False Specify the minimum instance count for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named Aliases: @@ -374,7 +373,7 @@ Accept wildcard characters: False Specify the minimum instance percentage for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named Aliases: @@ -389,7 +388,7 @@ Accept wildcard characters: False Specify the min replica set size for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -404,7 +403,7 @@ Accept wildcard characters: False Specify the name of the managed service. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ServiceName @@ -419,7 +418,7 @@ Accept wildcard characters: False Specify the number of partitions. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range Aliases: @@ -436,7 +435,7 @@ Services using this model usually have data that can be bucketed, within a bound Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: Stateless-Named, Stateful-Named Aliases: @@ -453,7 +452,7 @@ Services using this model usually have data that can be bucketed, within a bound Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateless-Named, Stateful-Named Aliases: @@ -469,7 +468,7 @@ Indicates that the service uses the singleton partition scheme. Singleton partitions are typically used when the service does not require any additional routing. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateless-Singleton, Stateful-Singleton Aliases: @@ -485,7 +484,7 @@ Indicates that the service uses the UniformInt64 partition scheme. This means that each partition owns a range of int64 keys. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateless-UniformInt64Range, Stateful-UniformInt64Range Aliases: @@ -500,7 +499,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -516,7 +515,7 @@ Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -532,7 +531,7 @@ Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -547,7 +546,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -562,7 +561,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -578,7 +577,7 @@ Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster ```yaml -Type: ServicePackageActivationModeEnum +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum Parameter Sets: (All) Aliases: Accepted values: SharedProcess, ExclusiveProcess @@ -595,7 +594,7 @@ Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -611,7 +610,7 @@ Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -626,7 +625,7 @@ Accept wildcard characters: False Use for stateful service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -641,7 +640,7 @@ Accept wildcard characters: False Use for stateless service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateless-Singleton, Stateless-UniformInt64Range, Stateless-Named Aliases: @@ -656,7 +655,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -671,7 +670,7 @@ Accept wildcard characters: False Specify the target replica set size for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateful-Singleton, Stateful-UniformInt64Range, Stateful-Named Aliases: @@ -686,7 +685,7 @@ Accept wildcard characters: False Specify the service type name of the managed application, should exist in the application manifest. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ServiceType @@ -701,7 +700,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -717,7 +716,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -739,7 +738,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md index 3f1be9436d56..d33a53e4aa5e 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedCluster.md @@ -91,7 +91,7 @@ Accept wildcard characters: False Managed Cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md index 7035faadceae..2056321ac7eb 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplication.md @@ -71,7 +71,7 @@ This example removes the managed application "testApp" with the ARM Resource ID Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -86,7 +86,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -101,7 +101,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -116,7 +116,7 @@ Accept wildcard characters: False Remove without prompt. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -131,7 +131,7 @@ Accept wildcard characters: False The managed application resource. ```yaml -Type: PSManagedApplication +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication Parameter Sets: ByInputObject Aliases: @@ -146,7 +146,7 @@ Accept wildcard characters: False Specify the name of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationName @@ -161,7 +161,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -176,7 +176,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -191,7 +191,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -206,7 +206,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -222,7 +222,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -240,7 +240,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication ## OUTPUTS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md index 470fa05482fd..5ae54059d8a2 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationType.md @@ -65,14 +65,13 @@ PS C:\> Remove-AzServiceFabricManagedClusterApplicationType -ResourceId $resourc This example will remove the managed application type details with the ARM Resource ID specified. - ## PARAMETERS ### -ClusterName Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -87,7 +86,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -102,7 +101,7 @@ Accept wildcard characters: False Remove without prompt. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -117,7 +116,7 @@ Accept wildcard characters: False The managed application type resource. ```yaml -Type: PSManagedApplicationType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType Parameter Sets: ByInputObject Aliases: @@ -132,7 +131,7 @@ Accept wildcard characters: False Specify the name of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationTypeName @@ -147,7 +146,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -162,7 +161,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -177,7 +176,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -192,7 +191,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -208,7 +207,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -226,7 +225,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType ## OUTPUTS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md index 7818701b9cc8..476a6a77dfa0 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -74,7 +74,7 @@ This example will remove the managed application type version details with the A Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -89,7 +89,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -104,7 +104,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -119,7 +119,7 @@ Accept wildcard characters: False Remove without prompt. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -134,7 +134,7 @@ Accept wildcard characters: False The managed application type version resource. ```yaml -Type: PSManagedApplicationTypeVersion +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion Parameter Sets: ByInputObject Aliases: @@ -149,7 +149,7 @@ Accept wildcard characters: False Specify the name of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationTypeName @@ -164,7 +164,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -179,7 +179,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -194,7 +194,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application type version. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -209,7 +209,7 @@ Accept wildcard characters: False Specify the managed application type version. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationTypeVersion @@ -224,7 +224,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -240,7 +240,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -258,7 +258,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion ## OUTPUTS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md index a55f7b01fb8b..2e7f344cbd57 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterClientCertificate.md @@ -123,7 +123,7 @@ Accept wildcard characters: False Managed cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster Parameter Sets: ClientCertByTpByObj, ClientCertByCnByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md index d720148802a3..bc067e791aed 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedClusterService.md @@ -54,7 +54,7 @@ PS C:\> $clusterName = "testCluster" PS C:\> $appName = "testApp" PS C:\> $serviceName = "testService1" PS C:\> $service = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName -PS C:\> $service | Remove-AzServiceFabricManagedClusterService +PS C:\> $service | Remove-AzServiceFabricManagedClusterService ``` This example will remove the managed service testService1". @@ -73,7 +73,7 @@ This example will remove the managed service details with the ARM Resource ID sp Specify the name of the application. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -88,7 +88,7 @@ Accept wildcard characters: False Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -103,7 +103,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -118,7 +118,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -133,7 +133,7 @@ Accept wildcard characters: False Remove without prompt. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -148,7 +148,7 @@ Accept wildcard characters: False The managed service resource. ```yaml -Type: PSManagedService +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService Parameter Sets: ByInputObject Aliases: @@ -163,7 +163,7 @@ Accept wildcard characters: False Specify the name of the service. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ServiceName @@ -178,7 +178,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -193,7 +193,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -208,7 +208,7 @@ Accept wildcard characters: False Arm ResourceId of the service. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -223,7 +223,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -239,7 +239,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -257,7 +257,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService ## OUTPUTS diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md index 6dc504577929..f2f506b9b78a 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeType.md @@ -166,7 +166,7 @@ Accept wildcard characters: False Node type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType Parameter Sets: DeleteNodeTypeByObj, DeleteNodeByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md index 480c075d40ca..92d8a1dbabd4 100644 --- a/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md +++ b/src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricManagedNodeTypeVMExtension.md @@ -103,7 +103,7 @@ Accept wildcard characters: False Node type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md index 8fff3a7437a8..5fe4708b5bf2 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedCluster.md @@ -157,7 +157,7 @@ Accept wildcard characters: False Managed Cluster resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedCluster +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster Parameter Sets: ByObj Aliases: diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md index a8fcbda002b3..ea5426ff95b5 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplication.md @@ -17,7 +17,7 @@ Update a service fabric managed application. This allows to update the applicati Set-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-ClusterName] [-Name] [[-ApplicationTypeVersion] ] [-ApplicationParameter ] [-ForceRestart] [-RecreateApplication] [-UpgradeReplicaSetCheckTimeoutSec ] [-InstanceCloseDelayDurationSec ] - [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] + [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] [-HealthCheckWaitDurationSec ] [-HealthCheckStableDurationSec ] [-UpgradeDomainTimeoutSec ] [-UpgradeTimeoutSec ] [-ConsiderWarningAsError] [-DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService ] @@ -32,7 +32,7 @@ Set-AzServiceFabricManagedClusterApplication [-ResourceGroupName] [-Clu Set-AzServiceFabricManagedClusterApplication [[-ApplicationTypeVersion] ] [-ApplicationParameter ] [-ForceRestart] [-RecreateApplication] [-UpgradeReplicaSetCheckTimeoutSec ] [-InstanceCloseDelayDurationSec ] - [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] + [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] [-HealthCheckWaitDurationSec ] [-HealthCheckStableDurationSec ] [-UpgradeDomainTimeoutSec ] [-UpgradeTimeoutSec ] [-ConsiderWarningAsError] [-DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService ] @@ -47,7 +47,7 @@ Set-AzServiceFabricManagedClusterApplication [[-ApplicationTypeVersion] Set-AzServiceFabricManagedClusterApplication [[-ApplicationTypeVersion] ] [-ApplicationParameter ] [-ForceRestart] [-RecreateApplication] [-UpgradeReplicaSetCheckTimeoutSec ] [-InstanceCloseDelayDurationSec ] - [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] + [-UpgradeMode ] [-FailureAction ] [-HealthCheckRetryTimeoutSec ] [-HealthCheckWaitDurationSec ] [-HealthCheckStableDurationSec ] [-UpgradeDomainTimeoutSec ] [-UpgradeTimeoutSec ] [-ConsiderWarningAsError] [-DefaultServiceTypeMaxPercentUnhealthyPartitionsPerService ] @@ -105,7 +105,6 @@ PS C:\> Set-AzServiceFabricManagedClusterApplication -ResourceGroupName $resourc This example updates the application parameters but these changes will only take effect until the next version upgrade to the application. - ## PARAMETERS ### -ApplicationParameter @@ -113,7 +112,7 @@ Specify the application parameters as key/value pairs. These parameters must exist in the application manifest. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -128,7 +127,7 @@ Accept wildcard characters: False Specify the application type version ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -143,7 +142,7 @@ Accept wildcard characters: False Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -158,7 +157,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -173,7 +172,7 @@ Accept wildcard characters: False Indicates whether to treat a warning health event as an error event during health evaluation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -188,7 +187,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -203,7 +202,7 @@ Accept wildcard characters: False Specifies the maximum percent of unhelthy partitions per service allowed by the health policy for the default service type to use for the monitored upgrade. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -218,7 +217,7 @@ Accept wildcard characters: False Specifies the maximum percent of unhelthy replicas per service allowed by the health policy for the default service type to use for the monitored upgrade. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -233,7 +232,7 @@ Accept wildcard characters: False Specifies the maximum percent of unhelthy services allowed by the health policy for the default service type to use for the monitored upgrade. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -249,7 +248,7 @@ Specifies the action to take if the monitored upgrade fails. The acceptable values for this parameter are Rollback or Manual. ```yaml -Type: FailureAction +Type: Microsoft.Azure.Commands.ServiceFabric.Models.FailureAction Parameter Sets: (All) Aliases: Accepted values: Rollback, Manual @@ -265,7 +264,7 @@ Accept wildcard characters: False Continue without prompts ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -280,7 +279,7 @@ Accept wildcard characters: False Indicates that the service host restarts even if the upgrade is a configuration-only change. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -295,7 +294,7 @@ Accept wildcard characters: False Specifies the duration, in seconds, after which Service Fabric retries the health check if the previous health check fails. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -311,7 +310,7 @@ Specifies the duration, in seconds, that Service Fabric waits in order to verify This wait duration prevents undetected changes of health right after the health check is performed. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -326,7 +325,7 @@ Accept wildcard characters: False Specifies the duration, in seconds, that Service Fabric waits before it performs the initial health check after it finishes the upgrade on the upgrade domain. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -341,7 +340,7 @@ Accept wildcard characters: False The managed application resource. ```yaml -Type: PSManagedApplication +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication Parameter Sets: ByInputObject Aliases: @@ -356,7 +355,7 @@ Accept wildcard characters: False Specifies the duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -371,7 +370,7 @@ Accept wildcard characters: False Specify the name of the application ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationName @@ -387,7 +386,7 @@ Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -402,7 +401,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -417,7 +416,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -433,7 +432,7 @@ Specifies the map of the health policy to use for different service types as a h For example: @{ "ServiceTypeName01" = "5,10,5"; "ServiceTypeName02" = "5,5,5" } ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -448,7 +447,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -463,7 +462,7 @@ Accept wildcard characters: False Specifies the maximum percentage of the application instances deployed on the nodes in the cluster that have a health state of error before the application health state for the cluster is error. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -479,7 +478,7 @@ Specifies the maximum time, in seconds, that Service Fabric takes to upgrade a s After this period, the upgrade fails. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -495,7 +494,7 @@ The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto. ```yaml -Type: UpgradeMode +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ApplicationUpgradeMode Parameter Sets: (All) Aliases: Accepted values: Monitored, UnmonitoredAuto @@ -511,7 +510,7 @@ Accept wildcard characters: False Specifies the maximum time that Service Fabric waits for a service to reconfigure into a safe state, if not already in a safe state, before Service Fabric proceeds with the upgrade. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -527,7 +526,7 @@ Specifies the maximum time, in seconds, that Service Fabric takes for the entire After this period, the upgrade fails. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -542,7 +541,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -558,7 +557,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -578,11 +577,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Hashtable -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplication +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplication ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md index 21a5ad42586d..3000706be2c0 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationType.md @@ -74,7 +74,7 @@ This example will update the managed application type details with the ARM Resou Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -89,7 +89,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -104,7 +104,7 @@ Accept wildcard characters: False Remove without prompt. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -119,7 +119,7 @@ Accept wildcard characters: False The managed application type resource. ```yaml -Type: PSManagedApplicationType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType Parameter Sets: ByInputObject Aliases: @@ -134,7 +134,7 @@ Accept wildcard characters: False Specify the name of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationTypeName @@ -149,7 +149,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -164,7 +164,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application type. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -179,7 +179,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -194,7 +194,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -210,7 +210,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -230,13 +230,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Hashtable -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType ## OUTPUTS ### System.Boolean -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationType +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationType ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md index e6813a4a24fb..fa85aba3e2c9 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -80,7 +80,7 @@ This example will update the managed application type details with the ARM Resou Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -95,7 +95,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -110,7 +110,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -125,7 +125,7 @@ Accept wildcard characters: False Continue without prompts ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -140,7 +140,7 @@ Accept wildcard characters: False The managed application type version resource. ```yaml -Type: PSManagedApplicationTypeVersion +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion Parameter Sets: ByInputObject Aliases: @@ -155,7 +155,7 @@ Accept wildcard characters: False Specify the name of the managed application type ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationTypeName @@ -170,7 +170,7 @@ Accept wildcard characters: False Specify the url of the application package sfpkg file ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -185,7 +185,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: @@ -200,7 +200,7 @@ Accept wildcard characters: False Arm ResourceId of the managed application type version. ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceId Aliases: @@ -215,7 +215,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -230,7 +230,7 @@ Accept wildcard characters: False Specify the managed application type version ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceGroup Aliases: ApplicationTypeVersion @@ -245,7 +245,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -261,7 +261,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -281,11 +281,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Hashtable -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedApplicationTypeVersion +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedApplicationTypeVersion ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md index 7e67fbfd0e84..70d593ca8a44 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedClusterService.md @@ -105,7 +105,7 @@ PS C:\> $serviceName = "testService1" PS C:\> $instanceCloseDelayDuration = "00:11:00" PS C:\> $minInstancePercentage = 20 PS C:\> $minInstanceCount = 2 -PS C:\> $statelessServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSServiceMetric" -ArgumentList @("metric1", "Low", 4) +PS C:\> $statelessServiceMetric = New-Object -TypeName "Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric" -ArgumentList @("metric1", "Low", 4) PS C:\> $service = Get-AzServiceFabricManagedClusterService -ResourceGroupName $resourceGroupName -ClusterName $clusterName -ApplicationName $appName PS C:\> $service | Set-AzServiceFabricManagedClusterService -Stateless -Metric @($statelessServiceMetric) -MinInstanceCount $minInstanceCount -InstanceCloseDelayDuration $instanceCloseDelayDuration -MinInstancePercentage $minInstancePercentage -Verbose ``` @@ -128,7 +128,7 @@ This example will remove the managed service details with the ARM Resource ID sp Specify the name of the managed application. ```yaml -Type: String +Type: System.String Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup Aliases: @@ -143,7 +143,7 @@ Accept wildcard characters: False Run cmdlet in the background and return a Job to track progress. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -158,7 +158,7 @@ Accept wildcard characters: False Specify the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup Aliases: @@ -173,7 +173,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: PSServiceCorrelation[] +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceCorrelation[] Parameter Sets: (All) Aliases: @@ -189,7 +189,7 @@ Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster ```yaml -Type: MoveCostEnum +Type: Microsoft.Azure.Commands.ServiceFabric.Models.MoveCostEnum Parameter Sets: (All) Aliases: Accepted values: Zero, Low, Medium, High @@ -205,7 +205,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -220,7 +220,7 @@ Accept wildcard characters: False Specify the drop source replica on move property for the managed service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -235,7 +235,7 @@ Accept wildcard characters: False Continue without prompts ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -250,7 +250,7 @@ Accept wildcard characters: False Specify the target replica set size for the managed service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -265,7 +265,7 @@ Accept wildcard characters: False The managed service resource. ```yaml -Type: PSManagedService +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService Parameter Sets: Stateless-ByInputObject, Stateful-ByInputObject Aliases: @@ -281,7 +281,7 @@ Specify the instance close delay duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject Aliases: @@ -296,7 +296,7 @@ Accept wildcard characters: False Specify the instance count for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject Aliases: @@ -311,7 +311,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: PSServiceMetric[] +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSServiceMetric[] Parameter Sets: (All) Aliases: @@ -326,7 +326,7 @@ Accept wildcard characters: False Specify the minimum instance count for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject Aliases: @@ -341,7 +341,7 @@ Accept wildcard characters: False Specify the minimum instance percentage for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject Aliases: @@ -356,7 +356,7 @@ Accept wildcard characters: False Specify the min replica set size for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -371,7 +371,7 @@ Accept wildcard characters: False Specify the name of the managed service. ```yaml -Type: String +Type: System.String Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup Aliases: ServiceName @@ -386,7 +386,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -402,7 +402,7 @@ Specify the quorum loss wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -418,7 +418,7 @@ Specify the replica restart wait duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -433,7 +433,7 @@ Accept wildcard characters: False Specify the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: Stateless-ByResourceGroup, Stateful-ByResourceGroup Aliases: @@ -448,7 +448,7 @@ Accept wildcard characters: False Arm ResourceId of the managed service. ```yaml -Type: String +Type: System.String Parameter Sets: Stateless-ByResourceId, Stateful-ByResourceId Aliases: @@ -463,7 +463,7 @@ Accept wildcard characters: False Specify the placement constraints of the managed service, as a string. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -479,7 +479,7 @@ Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster ```yaml -Type: ServicePackageActivationModeEnum +Type: Microsoft.Azure.Commands.ServiceFabric.Models.ServicePackageActivationModeEnum Parameter Sets: (All) Aliases: Accepted values: SharedProcess, ExclusiveProcess @@ -496,7 +496,7 @@ Specify the service placement time limit for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -512,7 +512,7 @@ Specify the stand by replica duration for the managed service. Duration represented in ISO 8601 format 'hh:mm:ss' ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -527,7 +527,7 @@ Accept wildcard characters: False Use for stateful service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -542,7 +542,7 @@ Accept wildcard characters: False Use for stateless service ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Stateless-ByResourceGroup, Stateless-ByResourceId, Stateless-ByInputObject Aliases: @@ -557,7 +557,7 @@ Accept wildcard characters: False Specify the tags as key/value pairs. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: @@ -572,7 +572,7 @@ Accept wildcard characters: False Specify the target replica set size for the managed service ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Stateful-ByResourceGroup, Stateful-ByResourceId, Stateful-ByInputObject Aliases: @@ -587,7 +587,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -603,7 +603,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -621,13 +621,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService ### System.Collections.Hashtable ## OUTPUTS -### Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedService +### Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedService ## NOTES diff --git a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md index 94b367d3e13c..95323ec2c152 100644 --- a/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md +++ b/src/ServiceFabric/ServiceFabric/help/Set-AzServiceFabricManagedNodeType.md @@ -243,7 +243,7 @@ Accept wildcard characters: False Node type resource ```yaml -Type: Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters.PSManagedNodeType +Type: Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType Parameter Sets: ByObj, ReimageByObj Aliases: diff --git a/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/BreakingChangeIssues.csv new file mode 100644 index 000000000000..ead6cabe74be --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/BreakingChangeIssues.csv @@ -0,0 +1,89 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3000","The type of property 'AzureActiveDirectory' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory'.","Change the type of property 'AzureActiveDirectory' back to 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ClusterUpgradeDescription' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeDescription' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3000","The type of property 'Sku' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.Sku' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku'.","Change the type of property 'Sku' back to 'Microsoft.Azure.Management.ServiceFabric.Models.Sku'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3030","The generic type for 'property Clients' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]'. ","Change the generic type for 'property Clients' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3030","The generic type for 'property LoadBalancingRules' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]'. ","Change the generic type for 'property LoadBalancingRules' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3030","The generic type for 'property FabricSettings' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]'. ","Change the generic type for 'property FabricSettings' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'UseTestExtension' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'UseTestExtension' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ReverseProxyEndpointPort' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ReverseProxyEndpointPort' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ClusterUpgradeMode' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeMode' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedClusterClientCertificate","Add-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ClusterCertificateThumbprint' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterCertificateThumbprint' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMExtension","Add-AzServiceFabricManagedNodeTypeVMExtension","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMExtension","Add-AzServiceFabricManagedNodeTypeVMExtension","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMExtension","Add-AzServiceFabricManagedNodeTypeVMExtension","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMExtension","Add-AzServiceFabricManagedNodeTypeVMExtension","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMSecret","Add-AzServiceFabricManagedNodeTypeVMSecret","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMSecret","Add-AzServiceFabricManagedNodeTypeVMSecret","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMSecret","Add-AzServiceFabricManagedNodeTypeVMSecret","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.AddAzServiceFabricManagedNodeTypeVMSecret","Add-AzServiceFabricManagedNodeTypeVMSecret","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3000","The type of property 'AzureActiveDirectory' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory'.","Change the type of property 'AzureActiveDirectory' back to 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeDescription' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeDescription' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3000","The type of property 'Sku' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.Sku' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku'.","Change the type of property 'Sku' back to 'Microsoft.Azure.Management.ServiceFabric.Models.Sku'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3030","The generic type for 'property Clients' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]'. ","Change the generic type for 'property Clients' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3030","The generic type for 'property LoadBalancingRules' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]'. ","Change the generic type for 'property LoadBalancingRules' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3030","The generic type for 'property FabricSettings' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]'. ","Change the generic type for 'property FabricSettings' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3010","The property 'UseTestExtension' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'UseTestExtension' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3010","The property 'ReverseProxyEndpointPort' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ReverseProxyEndpointPort' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeMode' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeMode' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetServiceFabricManagedCluster","Get-AzServiceFabricManagedCluster","0","3010","The property 'ClusterCertificateThumbprint' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterCertificateThumbprint' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetAzServiceFabricManagedNodeType","Get-AzServiceFabricManagedNodeType","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetAzServiceFabricManagedNodeType","Get-AzServiceFabricManagedNodeType","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetAzServiceFabricManagedNodeType","Get-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.GetAzServiceFabricManagedNodeType","Get-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3000","The type of property 'AzureActiveDirectory' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory'.","Change the type of property 'AzureActiveDirectory' back to 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeDescription' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeDescription' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3000","The type of property 'Sku' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.Sku' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku'.","Change the type of property 'Sku' back to 'Microsoft.Azure.Management.ServiceFabric.Models.Sku'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3030","The generic type for 'property Clients' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]'. ","Change the generic type for 'property Clients' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3030","The generic type for 'property LoadBalancingRules' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]'. ","Change the generic type for 'property LoadBalancingRules' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3030","The generic type for 'property FabricSettings' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]'. ","Change the generic type for 'property FabricSettings' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3010","The property 'UseTestExtension' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'UseTestExtension' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3010","The property 'ReverseProxyEndpointPort' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ReverseProxyEndpointPort' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeMode' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeMode' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedCluster","New-AzServiceFabricManagedCluster","0","3010","The property 'ClusterCertificateThumbprint' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterCertificateThumbprint' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedNodeType","New-AzServiceFabricManagedNodeType","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedNodeType","New-AzServiceFabricManagedNodeType","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedNodeType","New-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedNodeType","New-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3000","The type of property 'AzureActiveDirectory' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory'.","Change the type of property 'AzureActiveDirectory' back to 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeDescription' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeDescription' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3000","The type of property 'Sku' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.Sku' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku'.","Change the type of property 'Sku' back to 'Microsoft.Azure.Management.ServiceFabric.Models.Sku'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3030","The generic type for 'property Clients' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]'. ","Change the generic type for 'property Clients' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3030","The generic type for 'property LoadBalancingRules' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]'. ","Change the generic type for 'property LoadBalancingRules' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3030","The generic type for 'property FabricSettings' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]'. ","Change the generic type for 'property FabricSettings' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3010","The property 'UseTestExtension' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'UseTestExtension' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3010","The property 'ReverseProxyEndpointPort' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ReverseProxyEndpointPort' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeMode' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeMode' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveServiceFabricManagedCluster","Remove-AzServiceFabricManagedCluster","0","3010","The property 'ClusterCertificateThumbprint' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterCertificateThumbprint' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3000","The type of property 'AzureActiveDirectory' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory'.","Change the type of property 'AzureActiveDirectory' back to 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ClusterUpgradeDescription' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeDescription' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3000","The type of property 'Sku' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.Sku' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku'.","Change the type of property 'Sku' back to 'Microsoft.Azure.Management.ServiceFabric.Models.Sku'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3030","The generic type for 'property Clients' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]'. ","Change the generic type for 'property Clients' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3030","The generic type for 'property LoadBalancingRules' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]'. ","Change the generic type for 'property LoadBalancingRules' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3030","The generic type for 'property FabricSettings' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]'. ","Change the generic type for 'property FabricSettings' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'UseTestExtension' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'UseTestExtension' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ReverseProxyEndpointPort' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ReverseProxyEndpointPort' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ClusterUpgradeMode' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeMode' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedClusterClientCertificate","Remove-AzServiceFabricManagedClusterClientCertificate","0","3010","The property 'ClusterCertificateThumbprint' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterCertificateThumbprint' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeType","Remove-AzServiceFabricManagedNodeType","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeType","Remove-AzServiceFabricManagedNodeType","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeType","Remove-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeType","Remove-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeTypeVMExtension","Remove-AzServiceFabricManagedNodeTypeVMExtension","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeTypeVMExtension","Remove-AzServiceFabricManagedNodeTypeVMExtension","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeTypeVMExtension","Remove-AzServiceFabricManagedNodeTypeVMExtension","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.RemoveAzServiceFabricManagedNodeTypeVMExtension","Remove-AzServiceFabricManagedNodeTypeVMExtension","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3000","The type of property 'AzureActiveDirectory' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.AzureActiveDirectory'.","Change the type of property 'AzureActiveDirectory' back to 'Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeDescription' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeDescription' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3000","The type of property 'Sku' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.Sku' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.Sku'.","Change the type of property 'Sku' back to 'Microsoft.Azure.Management.ServiceFabric.Models.Sku'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3030","The generic type for 'property Clients' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate]'. ","Change the generic type for 'property Clients' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3030","The generic type for 'property LoadBalancingRules' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.LoadBalancingRule]'. ","Change the generic type for 'property LoadBalancingRules' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3030","The generic type for 'property FabricSettings' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.SettingsSectionDescription]'. ","Change the generic type for 'property FabricSettings' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3010","The property 'UseTestExtension' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'UseTestExtension' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3010","The property 'ReverseProxyEndpointPort' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ReverseProxyEndpointPort' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3010","The property 'ClusterUpgradeMode' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterUpgradeMode' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedCluster","Set-AzServiceFabricManagedCluster","0","3010","The property 'ClusterCertificateThumbprint' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster' has been removed.","Add the property 'ClusterCertificateThumbprint' back to type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedCluster'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedNodeType","Set-AzServiceFabricManagedNodeType","0","3000","The type of property 'EphemeralPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'EphemeralPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedNodeType","Set-AzServiceFabricManagedNodeType","0","3000","The type of property 'ApplicationPorts' of type 'Microsoft.Azure.Commands.ServiceFabric.Models.PSManagedNodeType' has changed from 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription' to 'Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.EndpointRangeDescription'.","Change the type of property 'ApplicationPorts' back to 'Microsoft.Azure.Management.ServiceFabric.Models.EndpointRangeDescription'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedNodeType","Set-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmSecrets' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VaultSecretGroup]'. ","Change the generic type for 'property VmSecrets' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VaultSecretGroup]'." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedNodeType","Set-AzServiceFabricManagedNodeType","0","3030","The generic type for 'property VmExtensions' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VMSSExtension]'. ","Change the generic type for 'property VmExtensions' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.ServiceFabric.Models.VMSSExtension]'." \ No newline at end of file diff --git a/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/SignatureIssues.csv index f4033273ade5..9b28f0541426 100644 --- a/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.ServiceFabric/SignatureIssues.csv @@ -7,3 +7,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzureRmServiceFabricSetting","Set-AzServiceFabricSetting","1","8510","Cmdlet 'Set-AzServiceFabricSetting' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzureRmServiceFabricUpgradeType","Set-AzServiceFabricUpgradeType","1","8510","Cmdlet 'Set-AzServiceFabricUpgradeType' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricService","New-AzServiceFabricService","1","8410","Parameter Stateless of cmdlet New-AzServiceFabricService does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.SetAzServiceFabricManagedClusterService","Set-AzServiceFabricManagedClusterService","1","8410","Parameter Stateless of cmdlet Set-AzServiceFabricManagedClusterService does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll","Microsoft.Azure.Commands.ServiceFabric.Commands.NewAzServiceFabricManagedClusterService","New-AzServiceFabricManagedClusterService","1","8410","Parameter Stateless of cmdlet New-AzServiceFabricManagedClusterService does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name."