diff --git a/build.proj b/build.proj
index 42efa2caf63a..297a96ce987f 100644
--- a/build.proj
+++ b/build.proj
@@ -183,7 +183,7 @@
Microsoft.Powershell.*.dll,System*.dll,Microsoft.VisualBasic.dll,Microsoft.CSharp.dll,Microsoft.CodeAnalysis.dll,Microsoft.CodeAnalysis.CSharp.dll
System.Security.Cryptography.ProtectedData.dll,System.Configuration.ConfigurationManager.dll,System.Runtime.CompilerServices.Unsafe.dll,System.IO.FileSystem.AccessControl.dll,System.Buffers.dll,System.Text.Encodings.Web.dll,System.CodeDom.dll,System.Management.dll,System.Text.Json.dll,System.Threading.Tasks.Extensions.dll
-
+
diff --git a/src/Accounts/Accounts/help/Add-AzEnvironment.md b/src/Accounts/Accounts/help/Add-AzEnvironment.md
index 9052c69e9b1f..c2e380711ddf 100644
--- a/src/Accounts/Accounts/help/Add-AzEnvironment.md
+++ b/src/Accounts/Accounts/help/Add-AzEnvironment.md
@@ -46,7 +46,7 @@ Add-AzEnvironment [-Name] [[-StorageEndpoint] ] [-ARMEndpoint]
### Discovery
```
-Add-AzEnvironment [-AutoDiscover] [-Uri ] [-Scope ]
+Add-AzEnvironment -AutoDiscover [-Uri ] [-Scope {Process | CurrentUser}]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1
index b08a9417ae0f..5a3512e84ff9 100644
--- a/src/Aks/Aks/Az.Aks.psd1
+++ b/src/Aks/Aks/Az.Aks.psd1
@@ -75,8 +75,8 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Aks.dll')
FunctionsToExport = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
-CmdletsToExport = 'Get-AzAks', 'New-AzAks', 'Remove-AzAks', 'Import-AzAksCredential',
- 'Start-AzAksDashboard', 'Stop-AzAksDashboard', 'Set-AzAks',
+CmdletsToExport = 'Get-AzAksCluster', 'New-AzAksCluster', 'Remove-AzAksCluster', 'Import-AzAksCredential',
+ 'Start-AzAksDashboard', 'Stop-AzAksDashboard', 'Set-AzAksCluster',
'New-AzAksNodePool', 'Update-AzAksNodePool', 'Remove-AzAksNodePool',
'Get-AzAksNodePool', 'Install-AzAksKubectl', 'Get-AzAksVersion'
@@ -84,7 +84,7 @@ CmdletsToExport = 'Get-AzAks', 'New-AzAks', 'Remove-AzAks', 'Import-AzAksCredent
# VariablesToExport = @()
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
-AliasesToExport = @()
+AliasesToExport = @('Get-AzAks', 'New-AzAks', 'Remove-AzAks', 'Set-AzAks')
# DSC resources to export from this module
# DscResourcesToExport = @()
diff --git a/src/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md
index bff7acd00551..d12911444f19 100644
--- a/src/Aks/Aks/ChangeLog.md
+++ b/src/Aks/Aks/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+* Removed `ClientIdAndSecret` to `ServicePrincipalIdAndSecret` and set `ClientIdAndSecret` as an alias [#12381].
+* Removed `Get-AzAks`/`New-AzAks`/`Remove-AzAks`/`Set-AzAks` to `Get-AzAksCluster`/`New-AzAksCluster`/`Remove-AzAksCluster`/`Set-AzAksCluster` and set the original ones as alias [#12373].
## Version 1.1.3
* Fixed bug `Get-AzAks` doesn't get all clusters [#12296]
diff --git a/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs b/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs
index 5cc16e7b2db4..3e1790a4f93e 100644
--- a/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs
+++ b/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs
@@ -37,6 +37,7 @@
using Microsoft.WindowsAzure.Commands.Utilities.Common;
using Microsoft.Rest.Azure.OData;
using Microsoft.Azure.Management.Internal.Resources.Models;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
namespace Microsoft.Azure.Commands.Aks
{
@@ -69,7 +70,9 @@ public abstract class CreateOrUpdateKubeBase : KubeCmdletBase
Mandatory = false,
ParameterSetName = DefaultParamSet,
HelpMessage = "The client id and client secret associated with the AAD application / service principal.")]
- public PSCredential ClientIdAndSecret { get; set; }
+ [Alias("ClientIdAndSecret")]
+ [CmdletParameterBreakingChange("ClientIdAndSecret", ReplaceMentCmdletParameterName = "ServicePrincipalIdAndSecret")]
+ public PSCredential ServicePrincipalIdAndSecret { get; set; }
[Parameter(Mandatory = false,
HelpMessage = "Azure location for the cluster. Defaults to the location of the resource group.")]
@@ -149,7 +152,7 @@ protected virtual ManagedCluster BuildNewCluster()
new ContainerServiceLinuxProfile(LinuxProfileAdminUserName,
new ContainerServiceSshConfiguration(pubKey));
- var acsServicePrincipal = EnsureServicePrincipal(ClientIdAndSecret?.UserName, ClientIdAndSecret?.Password?.ToString());
+ var acsServicePrincipal = EnsureServicePrincipal(ServicePrincipalIdAndSecret?.UserName, ServicePrincipalIdAndSecret?.Password?.ToString());
var spProfile = new ManagedClusterServicePrincipalProfile(
acsServicePrincipal.SpId,
diff --git a/src/Aks/Aks/Commands/GetAzureRmAks.cs b/src/Aks/Aks/Commands/GetAzureRmAks.cs
index 30124831f373..e66dcc82bb26 100644
--- a/src/Aks/Aks/Commands/GetAzureRmAks.cs
+++ b/src/Aks/Aks/Commands/GetAzureRmAks.cs
@@ -21,10 +21,13 @@
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
using Microsoft.Azure.Management.ContainerService;
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
namespace Microsoft.Azure.Commands.Aks
{
- [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", DefaultParameterSetName = ResourceGroupParameterSet)]
+ [CmdletDeprecation(ReplacementCmdletName = "Get-AzAksCluster")]
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", DefaultParameterSetName = ResourceGroupParameterSet)]
+ [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")]
[OutputType(typeof(PSKubernetesCluster))]
public class GetAzureRmAks : KubeCmdletBase
{
diff --git a/src/Aks/Aks/Commands/NewAzureRmAks.cs b/src/Aks/Aks/Commands/NewAzureRmAks.cs
index 1a04f0889114..9066d99aec6f 100644
--- a/src/Aks/Aks/Commands/NewAzureRmAks.cs
+++ b/src/Aks/Aks/Commands/NewAzureRmAks.cs
@@ -17,11 +17,14 @@
using Microsoft.Azure.Commands.Aks.Models;
using Microsoft.Azure.Commands.Aks.Properties;
using Microsoft.Azure.Management.ContainerService;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
namespace Microsoft.Azure.Commands.Aks
{
- [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)]
+ [CmdletDeprecation(ReplacementCmdletName = "New-AzAksCluster")]
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)]
+ [Alias("New-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")]
[OutputType(typeof(PSKubernetesCluster))]
public class NewAzureRmAks : NewKubeBase
{
diff --git a/src/Aks/Aks/Commands/NewKubeBase.cs b/src/Aks/Aks/Commands/NewKubeBase.cs
index a8f0d8e550d4..044ff23fcc12 100644
--- a/src/Aks/Aks/Commands/NewKubeBase.cs
+++ b/src/Aks/Aks/Commands/NewKubeBase.cs
@@ -111,7 +111,7 @@ protected override ManagedCluster BuildNewCluster()
new ContainerServiceLinuxProfile(LinuxProfileAdminUserName,
new ContainerServiceSshConfiguration(pubKey));
- var acsServicePrincipal = EnsureServicePrincipal(ClientIdAndSecret?.UserName, ClientIdAndSecret?.Password?.ToString());
+ var acsServicePrincipal = EnsureServicePrincipal(ServicePrincipalIdAndSecret?.UserName, ServicePrincipalIdAndSecret?.Password?.ToString());
var spProfile = new ManagedClusterServicePrincipalProfile(
acsServicePrincipal.SpId,
diff --git a/src/Aks/Aks/Commands/RemoveAzureRmAks.cs b/src/Aks/Aks/Commands/RemoveAzureRmAks.cs
index 1a6c12d96cf5..316d771be851 100644
--- a/src/Aks/Aks/Commands/RemoveAzureRmAks.cs
+++ b/src/Aks/Aks/Commands/RemoveAzureRmAks.cs
@@ -18,10 +18,13 @@
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
using Microsoft.Azure.Management.ContainerService;
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
namespace Microsoft.Azure.Commands.Aks
{
- [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", SupportsShouldProcess = true, DefaultParameterSetName = GroupNameParameterSet)]
+ [CmdletDeprecation(ReplacementCmdletName = "Remove-AzAksCluster")]
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", SupportsShouldProcess = true, DefaultParameterSetName = GroupNameParameterSet)]
+ [Alias("Remove-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")]
[OutputType(typeof(bool))]
public class RemoveAzureRmAks : KubeCmdletBase
{
diff --git a/src/Aks/Aks/Commands/SetAzureRmAks.cs b/src/Aks/Aks/Commands/SetAzureRmAks.cs
index ce6f54ddcba0..fb1a4681c44e 100644
--- a/src/Aks/Aks/Commands/SetAzureRmAks.cs
+++ b/src/Aks/Aks/Commands/SetAzureRmAks.cs
@@ -21,11 +21,14 @@
using Microsoft.Azure.Management.ContainerService;
using Microsoft.Azure.Management.ContainerService.Models;
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
namespace Microsoft.Azure.Commands.Aks
{
- [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)]
+ [CmdletDeprecation(ReplacementCmdletName = "Set-AzAksCluster")]
+ [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)]
+ [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")]
[OutputType(typeof(PSKubernetesCluster))]
public class SetAzureRmAks : CreateOrUpdateKubeBase
{
@@ -108,10 +111,10 @@ public override void ExecuteCmdlet()
new ContainerServiceSshPublicKey(GetSshKey(SshKeyValue))
};
}
- if (this.IsParameterBound(c => c.ClientIdAndSecret))
+ if (this.IsParameterBound(c => c.ServicePrincipalIdAndSecret))
{
WriteVerbose(Resources.UpdatingServicePrincipal);
- var acsServicePrincipal = EnsureServicePrincipal(ClientIdAndSecret.UserName, ClientIdAndSecret.Password.ToString());
+ var acsServicePrincipal = EnsureServicePrincipal(ServicePrincipalIdAndSecret.UserName, ServicePrincipalIdAndSecret.Password.ToString());
var spProfile = new ManagedClusterServicePrincipalProfile(
acsServicePrincipal.SpId,
diff --git a/src/Aks/Aks/help/Az.Aks.md b/src/Aks/Aks/help/Az.Aks.md
index c02c19b613c5..7d6121602855 100644
--- a/src/Aks/Aks/help/Az.Aks.md
+++ b/src/Aks/Aks/help/Az.Aks.md
@@ -11,7 +11,7 @@ Locale: en-US
Commands to interact with Azure managed Kubernetes clusters.
## Az.Aks Cmdlets
-### [Get-AzAks](Get-AzAks.md)
+### [Get-AzAksCluster](Get-AzAksCluster.md)
List Kubernetes managed clusters.
### [Get-AzAksNodePool](Get-AzAksNodePool.md)
@@ -26,19 +26,19 @@ Import and merge Kubectl config for a managed Kubernetes Cluster.
### [Install-AzAksKubectl](Install-AzAksKubectl.md)
Download and install kubectl, the Kubernetes command-line tool.
-### [New-AzAks](New-AzAks.md)
+### [New-AzAksCluster](New-AzAksCluster.md)
Create a new managed Kubernetes cluster.
### [New-AzAksNodePool](New-AzAksNodePool.md)
Create a new node pool in specified cluster.
-### [Remove-AzAks](Remove-AzAks.md)
+### [Remove-AzAksCluster](Remove-AzAksCluster.md)
Delete a managed Kubernetes cluster.
### [Remove-AzAksNodePool](Remove-AzAksNodePool.md)
Delete node pool from managed cluster.
-### [Set-AzAks](Set-AzAks.md)
+### [Set-AzAksCluster](Set-AzAksCluster.md)
Update or create a managed Kubernetes cluster.
### [Start-AzAksDashboard](Start-AzAksDashboard.md)
@@ -49,4 +49,3 @@ Stop the Kubectl SSH tunnel created in Start-AzKubernetesDashboard.
### [Update-AzAksNodePool](Update-AzAksNodePool.md)
Update node pool in a managed cluster.
-
diff --git a/src/Aks/Aks/help/Get-AzAks.md b/src/Aks/Aks/help/Get-AzAksCluster.md
similarity index 84%
rename from src/Aks/Aks/help/Get-AzAks.md
rename to src/Aks/Aks/help/Get-AzAksCluster.md
index 8fb7a85d8483..3b0c22c9f6ba 100644
--- a/src/Aks/Aks/help/Get-AzAks.md
+++ b/src/Aks/Aks/help/Get-AzAksCluster.md
@@ -1,11 +1,11 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml
Module Name: Az.Aks
-online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/get-azaks
+online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/get-azakscluster
schema: 2.0.0
---
-# Get-AzAks
+# Get-AzAksCluster
## SYNOPSIS
List Kubernetes managed clusters.
@@ -14,17 +14,18 @@ List Kubernetes managed clusters.
### ResourceGroupParameterSet (Default)
```
-Get-AzAks [[-ResourceGroupName] ] [-DefaultProfile ] []
+Get-AzAksCluster [[-ResourceGroupName] ] [-DefaultProfile ]
+ []
```
### IdParameterSet
```
-Get-AzAks [-Id] [-DefaultProfile ] []
+Get-AzAksCluster [-Id] [-DefaultProfile ] []
```
### NameParameterSet
```
-Get-AzAks [-ResourceGroupName] [-Name] [-DefaultProfile ]
+Get-AzAksCluster [-ResourceGroupName] [-Name] [-DefaultProfile ]
[]
```
@@ -34,8 +35,8 @@ List Kubernetes managed clusters.
## EXAMPLES
### List all Kubernetes clusters
-```
-PS C:\> Get-AzAks
+```powershell
+PS C:\> Get-AzAksCluster
```
## PARAMETERS
diff --git a/src/Aks/Aks/help/New-AzAks.md b/src/Aks/Aks/help/New-AzAksCluster.md
similarity index 93%
rename from src/Aks/Aks/help/New-AzAks.md
rename to src/Aks/Aks/help/New-AzAksCluster.md
index 4472e8b09677..a7b273726ac8 100644
--- a/src/Aks/Aks/help/New-AzAks.md
+++ b/src/Aks/Aks/help/New-AzAksCluster.md
@@ -1,11 +1,11 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml
Module Name: Az.Aks
-online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/new-azaks
+online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/new-azakscluster
schema: 2.0.0
---
-# New-AzAks
+# New-AzAksCluster
## SYNOPSIS
Create a new managed Kubernetes cluster.
@@ -13,15 +13,16 @@ Create a new managed Kubernetes cluster.
## SYNTAX
```
-New-AzAks [-Force] [-NodeVmSetType ] [-NodeVnetSubnetID ] [-NodeMaxPodCount ]
+New-AzAksCluster [-Force] [-NodeVmSetType ] [-NodeVnetSubnetID ] [-NodeMaxPodCount ]
[-NodeOsType ] [-NodeSetPriority ] [-NodeScaleSetEvictionPolicy ]
[-AcrNameToAttach ] [-EnableRbac] [-WindowsProfileAdminUserName ]
[-WindowsProfileAdminUserPassword ] [-NetworkPlugin ] [-LoadBalancerSku ]
- [-ResourceGroupName] [-Name] [[-ClientIdAndSecret] ] [-Location ]
- [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ]
- [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling]
- [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] [-SshKeyValue ] [-AsJob]
- [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+ [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ]
+ [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ]
+ [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ]
+ [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ]
+ [-SshKeyValue ] [-AsJob] [-Tag ] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
```
## DESCRIPTION
@@ -32,7 +33,7 @@ Create a new Azure Kubernetes Service(AKS) cluster.
### New an AKS with default params.
-```
+```powershell
PS C:\> New-AzAks -ResourceGroupName myResourceGroup -Name myCluster
```
@@ -40,7 +41,7 @@ PS C:\> New-AzAks -ResourceGroupName myResourceGroup -Name myCluster
To create Windows Server container on an AKS, you must specify at least four following parameters when creating the AKS, and the value for `NetworkPlugin` and `NodeVmSetType` must be `azure` and `VirtualMachineScaleSets` respectively.
`-WindowsProfileAdminUserName *** -WindowsProfileAdminUserPassword *** -NetworkPlugin azure -NodeVmSetType VirtualMachineScaleSets`
-```
+```powershell
PS C:\> $cred = ConvertTo-SecureString -AsPlainText "Password!!123" -Force
PS C:\> New-AzAks -ResourceGroupName myResourceGroup -Name myCluster -WindowsProfileAdminUserName azureuser -WindowsProfileAdminUserPassword $cred -NetworkPlugin azure -NodeVmSetType VirtualMachineScaleSets
PS C:\> New-AzAksNodePool -ResourceGroupName myResourceGroup -ClusterName myCluster -Name win1 -OsType Windows -VmSetType VirtualMachineScaleSets
@@ -78,21 +79,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -ClientIdAndSecret
-The client id and client secret associated with the AAD application / service principal.
-
-```yaml
-Type: System.Management.Automation.PSCredential
-Parameter Sets: (All)
-Aliases:
-
-Required: False
-Position: 2
-Default value: None
-Accept pipeline input: False
-Accept wildcard characters: False
-```
-
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
@@ -454,6 +440,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ServicePrincipalIdAndSecret
+The client id and client secret associated with the AAD application / service principal.
+
+```yaml
+Type: System.Management.Automation.PSCredential
+Parameter Sets: (All)
+Aliases: ClientIdAndSecret
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -SshKeyValue
SSH key file value or key file path.
Defaults to {HOME}/.ssh/id_rsa.pub.
diff --git a/src/Aks/Aks/help/Remove-AzAks.md b/src/Aks/Aks/help/Remove-AzAksCluster.md
similarity index 91%
rename from src/Aks/Aks/help/Remove-AzAks.md
rename to src/Aks/Aks/help/Remove-AzAksCluster.md
index 19ec047f8058..1f927964e582 100644
--- a/src/Aks/Aks/help/Remove-AzAks.md
+++ b/src/Aks/Aks/help/Remove-AzAksCluster.md
@@ -1,11 +1,11 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml
Module Name: Az.Aks
-online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/remove-azaks
+online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/remove-azakscluster
schema: 2.0.0
---
-# Remove-AzAks
+# Remove-AzAksCluster
## SYNOPSIS
Delete a managed Kubernetes cluster.
@@ -14,20 +14,20 @@ Delete a managed Kubernetes cluster.
### GroupNameParameterSet (Default)
```
-Remove-AzAks [-ResourceGroupName] [-Name] [-PassThru] [-AsJob] [-Force]
+Remove-AzAksCluster [-ResourceGroupName] [-Name] [-PassThru] [-AsJob] [-Force]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### InputObjectParameterSet
```
-Remove-AzAks -InputObject [-PassThru] [-AsJob] [-Force]
+Remove-AzAksCluster -InputObject [-PassThru] [-AsJob] [-Force]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### IdParameterSet
```
-Remove-AzAks [-Id] [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf]
- [-Confirm] []
+Remove-AzAksCluster [-Id] [-PassThru] [-AsJob] [-Force] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -36,7 +36,7 @@ Delete a managed Kubernetes cluster.
## EXAMPLES
### Delete an existing managed Kubernetes cluster
-```
+```powershell
PS C:\> Remove-AzAks -ResourceGroupName group -Name myCluster
```
diff --git a/src/Aks/Aks/help/Set-AzAks.md b/src/Aks/Aks/help/Set-AzAksCluster.md
similarity index 90%
rename from src/Aks/Aks/help/Set-AzAks.md
rename to src/Aks/Aks/help/Set-AzAksCluster.md
index bc8793f046d7..3c1a0d211338 100644
--- a/src/Aks/Aks/help/Set-AzAks.md
+++ b/src/Aks/Aks/help/Set-AzAksCluster.md
@@ -1,11 +1,11 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml
Module Name: Az.Aks
-online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/set-azaks
+online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/set-azakscluster
schema: 2.0.0
---
-# Set-AzAks
+# Set-AzAksCluster
## SYNOPSIS
Update or create a managed Kubernetes cluster.
@@ -13,8 +13,8 @@ Update or create a managed Kubernetes cluster.
## SYNTAX
### defaultParameterSet (Default)
-```
-Set-AzAks [-ResourceGroupName] [-Name] [[-ClientIdAndSecret] ]
+```powershell
+Set-AzAksCluster [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ]
[-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ]
[-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ]
[-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ]
@@ -23,8 +23,8 @@ Set-AzAks [-ResourceGroupName] [-Name] [[-ClientIdAndSecret] <
```
### InputObjectParameterSet
-```
-Set-AzAks -InputObject [-Location ] [-LinuxProfileAdminUserName ]
+```powershell
+Set-AzAksCluster -InputObject [-Location ] [-LinuxProfileAdminUserName ]
[-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ]
[-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ]
[-NodeVmSize ] [-SshKeyValue ] [-AsJob] [-Tag ]
@@ -32,12 +32,12 @@ Set-AzAks -InputObject [-Location ] [-LinuxProfile
```
### IdParameterSet
-```
-Set-AzAks [-Id] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ]
- [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ]
- [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ]
- [-SshKeyValue ] [-AsJob] [-Tag ] [-DefaultProfile ] [-WhatIf]
- [-Confirm] []
+```powershell
+Set-AzAksCluster [-Id] [-Location ] [-LinuxProfileAdminUserName ]
+ [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ]
+ [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ]
+ [-NodeVmSize ] [-SshKeyValue ] [-AsJob] [-Tag ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -46,7 +46,7 @@ Update or create a managed Kubernetes cluster.
## EXAMPLES
### Example 1
-```
+```powershell
PS C:\> Get-AzAks -ResourceGroupName group -Name myCluster | Set-AzAks -NodeCount 5
```
@@ -69,21 +69,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -ClientIdAndSecret
-The client id and client secret associated with the AAD application / service principal.
-
-```yaml
-Type: System.Management.Automation.PSCredential
-Parameter Sets: defaultParameterSet
-Aliases:
-
-Required: False
-Position: 2
-Default value: None
-Accept pipeline input: False
-Accept wildcard characters: False
-```
-
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
@@ -325,6 +310,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ServicePrincipalIdAndSecret
+The client id and client secret associated with the AAD application / service principal.
+
+```yaml
+Type: System.Management.Automation.PSCredential
+Parameter Sets: defaultParameterSet
+Aliases: ClientIdAndSecret
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -SshKeyValue
SSH key file value or key file path.
Defaults to {HOME}/.ssh/id_rsa.pub.
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
index b274388aede9..565e1efb3050 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs
index bbda5fc5c75b..3685c52c30c9 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs
@@ -193,6 +193,13 @@ public void LoggerCrudTest()
RunPowerShellTest("Logger-CrudTest");
}
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void GatewayCrudTest()
+ {
+ RunPowerShellTest("Gateway-CrudTest");
+ }
+
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void PropertiesCrudTest()
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
index 45a6621b09f9..1a75503e93d0 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
@@ -3618,4 +3618,167 @@ function ApiDiagnostic-CrudTest {
Remove-AzApiManagementNamedValue -Context $context -NamedValueId $properties[$i].NamedValueId
}
}
+}
+
+<#
+.SYNOPSIS
+Tests CRUD operations on Gateway.
+#>
+function Gateway-CrudTest {
+ Param($resourceGroupName, $serviceName)
+
+ $context = New-AzApiManagementContext -ResourceGroupName $resourceGroupName -ServiceName $serviceName
+
+ # create non-Secret Property
+ $gatewayId = getAssetName
+ $hostnameConfigId = getAssetName
+ $certId = getAssetName
+
+
+ $gateways = Get-AzApiManagementGateway -Context $context
+
+ # Assert-AreEqual 0 $gateways.Count
+
+ #for ($i = 0; $i -lt $gateways.Count; $i++) {
+ # Remove-AzApiManagementGateway -Context $context -GatewayId $gateways[$i].GatewayId -PassThru
+ #}
+ #Remove-AzApiManagementCertificate -Context $context -CertificateId 'ps9906' -PassThru
+
+
+ try {
+ $description = getAssetName
+ $locationCity = getAssetName
+ $locationName = getAssetName
+ $locationRegion = getAssetName
+ $locationDistrict = getAssetName
+
+ $hostname = 'contoso.com'
+
+ #create
+ $location = New-AzApiManagementResourceLocationObject -Name $locationName -City $locationCity -District $locationDistrict -CountryOrRegion $locationRegion
+ $gateway = New-AzApiManagementGateway -Context $context -GatewayId $gatewayId -Description $description -LocationData $location
+
+ Assert-NotNull $gateway
+ Assert-AreEqual $description $gateway.Description
+ Assert-AreEqual $locationCity $gateway.LocationData.City
+ Assert-AreEqual $locationName $gateway.LocationData.Name
+ Assert-AreEqual $locationDistrict $gateway.LocationData.District
+ Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion
+
+ #get list
+ $gateways = Get-AzApiManagementGateway -Context $context
+ Assert-AreEqual 1 $gateways.Count
+ $gateway = $gateways[0]
+ Assert-NotNull $gateway
+ Assert-AreEqual $description $gateway.Description
+ Assert-AreEqual $locationCity $gateway.LocationData.City
+ Assert-AreEqual $locationName $gateway.LocationData.Name
+ Assert-AreEqual $locationDistrict $gateway.LocationData.District
+ Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion
+
+ #get
+ $gateway = Get-AzApiManagementGateway -Context $context -GatewayId $gatewayId
+ Assert-NotNull $gateway
+ Assert-AreEqual $description $gateway.Description
+ Assert-AreEqual $locationCity $gateway.LocationData.City
+ Assert-AreEqual $locationName $gateway.LocationData.Name
+ Assert-AreEqual $locationDistrict $gateway.LocationData.District
+ Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion
+
+ #update pipeline
+ $newDescription = getAssetName
+ $gateway = Get-AzApiManagementGateway -Context $context -GatewayId $gatewayId | Update-AzApiManagementGateway -Description $newDescription -PassThru
+ Assert-NotNull $gateway
+ Assert-AreEqual $newDescription $gateway.Description
+ Assert-AreEqual $locationCity $gateway.LocationData.City
+
+ #update
+ $newDescription = getAssetName
+ $gateway = Update-AzApiManagementGateway -Context $context -GatewayId $gatewayId -Description $newDescription -PassThru
+ Assert-NotNull $gateway
+ Assert-AreEqual $newDescription $gateway.Description
+ Assert-AreEqual $locationCity $gateway.LocationData.City
+ Assert-AreEqual $locationName $gateway.LocationData.Name
+ Assert-AreEqual $locationDistrict $gateway.LocationData.District
+ Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion
+
+ #update location
+ $newLocationCity = getAssetName
+ $location = New-AzApiManagementResourceLocationObject -Name $locationName -City $newLocationCity
+ $gateway = Update-AzApiManagementGateway -Context $context -GatewayId $gatewayId -LocationData @location -PassThru
+ Assert-NotNull $gateway
+ Assert-AreEqual $newDescription $gateway.Description
+ Assert-AreEqual $newLocationCity $gateway.LocationData.City
+ Assert-AreEqual $locationName $gateway.LocationData.Name
+ Assert-Null $gateway.LocationData.District
+ Assert-Null $gateway.LocationData.CountryOrRegion
+
+ #get keys
+ $key = Get-AzApiManagementGatewayKey -Context $context -GatewayId $gatewayId
+ Assert-NotNull $key
+ Assert-NotNull $key.PrimaryKey
+ Assert-NotNull $key.SecondaryKey
+
+ #attach to api
+ $apis = Get-AzApiManagementApi -Context $context
+ $apiId = $apis[0].ApiId
+
+ Add-AzApiManagementApiToGateway -Context $context -GatewayId $gatewayId -ApiId $apiId
+
+ $apis = Get-AzApiManagementApi -Context $context -GatewayId $gatewayId
+ Assert-AreEqual 1 $apis.Count
+
+ #detach from api
+ Remove-AzApiManagementApiFromGateway -Context $context -GatewayId $gatewayId -ApiId $apiId -PassThru
+
+ $apis = Get-AzApiManagementApi -Context $context -GatewayId $gatewayId
+ Assert-AreEqual 0 $apis.Count
+
+ $certPath = Join-Path (Join-Path "$TestOutputRoot" "Resources") "powershelltest.pfx"
+ #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")]
+ $certPassword = 'Password'
+ $certSubject = "CN=*.msitesting.net"
+ # upload certificate
+ $cert = New-AzApiManagementCertificate -Context $context -CertificateId $certId -PfxFilePath $certPath -PfxPassword $certPassword
+
+ #create hostname config
+ $hostnameConfig = New-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId -CertificateResourceId $cert.Id -GatewayHostnameConfigurationId $hostnameConfigId -Hostname $hostname
+ Assert-NotNull $hostnameConfig
+ Assert-AreEqual $hostname $hostnameConfig.Hostname
+ Assert-AreEqual $cert.Id $hostnameConfig.CertificateResourceId
+ Assert-AreEqual $false $hostnameConfig.NegotiateClientCertificate
+
+ #get config
+ $hostnameConfig = Get-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId -GatewayHostnameConfigurationId $hostnameConfigId
+ Assert-NotNull $hostnameConfig
+ Assert-AreEqual $hostname $hostnameConfig.Hostname
+ Assert-AreEqual $cert.Id $hostnameConfig.CertificateResourceId
+ Assert-AreEqual $false $hostnameConfig.NegotiateClientCertificate
+
+ #list config
+ $hostnameConfigs = Get-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId
+ Assert-AreEqual 1 $hostnameConfigs.Count
+ $hostnameConfig = $hostnameConfigs[0]
+ Assert-AreEqual $hostname $hostnameConfig.Hostname
+ Assert-AreEqual $cert.Id $hostnameConfig.CertificateResourceId
+ Assert-AreEqual $false $hostnameConfig.NegotiateClientCertificate
+ }
+ finally {
+ Remove-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId -GatewayHostnameConfigurationId $hostnameConfigId -PassThru
+
+ Remove-AzApiManagementCertificate -Context $context -CertificateId $certId -PassThru
+
+ $removed = Remove-AzApiManagementGateway -Context $context -GatewayId $gatewayId -PassThru
+ Assert-True { $removed }
+
+ $gateway = $null
+ try {
+ # check it was removed
+ $gateway = Get-AzApiManagementGateway -Context $context -GatewayId $gatewayId
+ }
+ catch {
+ }
+
+ Assert-Null $gateway
+ }
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json
index ae1cd0446e55..695911a9fb55 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c6fa840-b918-467e-8371-8f7cde176ddd"
+ "0522dfc0-1141-41be-9cdc-8547dbf5b643"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6af6a104-15dd-4d08-bc34-241afa760e7b"
+ "0ded8c98-a16b-409b-ba0f-9125c2e74900"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "38bf3960-326c-4c89-8332-a0a099a2c873"
+ "5373a7c1-3cb7-4f4d-839d-6853080aec32"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193711Z:38bf3960-326c-4c89-8332-a0a099a2c873"
+ "WESTUS:20200721T164423Z:5373a7c1-3cb7-4f4d-839d-6853080aec32"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:11 GMT"
+ "Tue, 21 Jul 2020 16:44:23 GMT"
],
"Content-Length": [
"729"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdb64acd-1039-4bcc-8214-bcaf01c3e9b6"
+ "3f6e8abb-9c9e-4223-bf90-547f7cc80b87"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACm8=\""
+ "\"AAAAAAAAPIk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "537dcea7-3aa1-468a-9210-4b9328f1222c"
+ "e6b983a6-2249-42ae-9eec-794aadd6ad25"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "2fbc4cda-c0a3-45b0-b542-ac530e93edec"
+ "8c695e8e-8b21-412d-9013-6190b3c8fd5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193711Z:2fbc4cda-c0a3-45b0-b542-ac530e93edec"
+ "WESTUS:20200721T164423Z:8c695e8e-8b21-412d-9013-6190b3c8fd5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:11 GMT"
+ "Tue, 21 Jul 2020 16:44:23 GMT"
],
"Content-Length": [
"747"
@@ -136,7 +136,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b2fe8e6-e8a4-40d1-8244-df238fde32e7"
+ "02fe42a1-9aa2-429f-8b06-0de121ed7888"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d8c13f1e-ea5b-4cda-9b23-cff164ae1101"
+ "f8645a3c-932a-47b4-bb14-4470484c8981"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -168,16 +168,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "45ae0f5c-c660-4552-af33-17cf4f21c715"
+ "cefc68e2-3454-4c4e-ac50-c919f2676948"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193712Z:45ae0f5c-c660-4552-af33-17cf4f21c715"
+ "WESTUS:20200721T164424Z:cefc68e2-3454-4c4e-ac50-c919f2676948"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:11 GMT"
+ "Tue, 21 Jul 2020 16:44:23 GMT"
],
"Content-Length": [
"7423"
@@ -193,13 +193,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjg4Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDE0Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9008\",\r\n \"versionQueryName\": \"ps1548\",\r\n \"displayName\": \"ps46\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6415\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"displayName\": \"ps2032\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5ffa5de-6a4b-4bdd-ba4e-c1f3ef597c0d"
+ "7e60b0d7-9fa5-4336-8160-320120d5d8bd"
],
"Accept-Language": [
"en-US"
@@ -208,13 +208,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "154"
+ "156"
]
},
"ResponseHeaders": {
@@ -225,13 +225,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC4g=\""
+ "\"AAAAAAAAPc4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69faf8a1-8f83-46cf-863f-40bdbd7d694d"
+ "f23c74ac-257e-420b-be00-3faebd5e3b12"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,19 +240,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "63af5e42-58fc-4f40-bdff-862e7f0af28c"
+ "8b91178b-19ff-4511-b335-e7cc6001a545"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193712Z:63af5e42-58fc-4f40-bdff-862e7f0af28c"
+ "WESTUS:20200721T164424Z:8b91178b-19ff-4511-b335-e7cc6001a545"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:12 GMT"
+ "Tue, 21 Jul 2020 16:44:24 GMT"
],
"Content-Length": [
- "447"
+ "449"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps6883\",\r\n \"properties\": {\r\n \"displayName\": \"ps46\",\r\n \"description\": \"ps9008\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1548\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4142\",\r\n \"properties\": {\r\n \"displayName\": \"ps2032\",\r\n \"description\": \"ps6415\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6225\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps5700\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps3384\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8138\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps3982\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7702ae8d-c3da-470e-a102-a82df6b2faa0"
+ "0129fbc0-23d5-4bbf-a7a2-bcd4d92540a9"
],
"Accept-Language": [
"en-US"
@@ -280,7 +280,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -297,13 +297,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC4s=\""
+ "\"AAAAAAAAPdE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3deacc60-8b19-4919-98ce-ada39ce2b291"
+ "73f7dd39-fbb6-4ea5-9e46-385a6882536c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,16 +312,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "505af6be-3584-4230-8d46-a40d82c890ad"
+ "b599c4a9-6be2-4151-b5d0-fffcc52115e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193713Z:505af6be-3584-4230-8d46-a40d82c890ad"
+ "WESTUS:20200721T164425Z:b599c4a9-6be2-4151-b5d0-fffcc52115e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:13 GMT"
+ "Tue, 21 Jul 2020 16:44:25 GMT"
],
"Content-Length": [
"768"
@@ -333,12 +333,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4910\",\r\n \"properties\": {\r\n \"displayName\": \"ps5700\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6225\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps3384\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1067\",\r\n \"properties\": {\r\n \"displayName\": \"ps3982\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8138\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -346,7 +346,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC4s=\""
+ "\"AAAAAAAAPdE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "827af160-b6ed-4484-8d2f-a49808518278"
+ "c426f36f-9dfa-4eed-911a-ec9a56bcb95e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "8fcfa32e-502f-49df-b21a-798db4d8a8ac"
+ "05d4e716-35d9-43a4-a2d4-19e020784195"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193743Z:8fcfa32e-502f-49df-b21a-798db4d8a8ac"
+ "WESTUS:20200721T164456Z:05d4e716-35d9-43a4-a2d4-19e020784195"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:43 GMT"
+ "Tue, 21 Jul 2020 16:44:55 GMT"
],
"Content-Length": [
"768"
@@ -393,17 +393,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4910\",\r\n \"properties\": {\r\n \"displayName\": \"ps5700\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6225\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps3384\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1067\",\r\n \"properties\": {\r\n \"displayName\": \"ps3982\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8138\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a19f28a4-0c40-4dc9-84b2-6f3826db6bf8"
+ "491b8dfd-5d8b-4180-8cb4-0f0bf2535e09"
],
"Accept-Language": [
"en-US"
@@ -412,7 +412,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9030e58c-19ab-44b2-ad52-1daad9f0c294"
+ "6078bf67-ec03-4581-9fa6-536c4a047e8f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +435,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "d569983d-1122-445e-9384-9249fbe6250a"
+ "56125a0f-8659-4c14-b059-0740c53a7203"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:d569983d-1122-445e-9384-9249fbe6250a"
+ "WESTUS:20200721T164456Z:56125a0f-8659-4c14-b059-0740c53a7203"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:43 GMT"
+ "Tue, 21 Jul 2020 16:44:55 GMT"
],
"Content-Length": [
"7411"
@@ -456,17 +456,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/create-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a318ad0-4ee5-45dc-b8de-86a86f6ea42e"
+ "7e2b9959-2b8c-4957-a92b-a66c83b4d6fa"
],
"Accept-Language": [
"en-US"
@@ -475,7 +475,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -486,13 +486,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC5s=\""
+ "\"AAAAAAAAPeE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0c75417f-19ed-4ac6-8b3e-09e216f6342a"
+ "291b519f-4b6d-41c4-961d-954d14818f97"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +501,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "a7ba6a54-d228-4abd-89fd-670c1bc0e616"
+ "eaa4a9dc-11ac-4561-aa5d-1835c5b5004c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:a7ba6a54-d228-4abd-89fd-670c1bc0e616"
+ "WESTUS:20200721T164456Z:eaa4a9dc-11ac-4561-aa5d-1835c5b5004c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:43 GMT"
+ "Tue, 21 Jul 2020 16:44:56 GMT"
],
"Content-Length": [
"1267"
@@ -522,17 +522,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/modify-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4546e0f4-7a2d-4882-a2d7-9c4f8e75d0bd"
+ "426a2086-2ef5-490f-9874-e488e4601338"
],
"Accept-Language": [
"en-US"
@@ -541,7 +541,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -552,13 +552,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC5o=\""
+ "\"AAAAAAAAPeA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "85398736-a0e5-42f6-8d6a-9f18d9871358"
+ "c6dcc46c-b05b-4d0c-8d23-954a60aa0221"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -567,16 +567,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "e6be34fa-e08b-429e-ae10-9fb6ebfedba2"
+ "769b5552-8311-4ff6-a6fc-fe0295ce5b3f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:e6be34fa-e08b-429e-ae10-9fb6ebfedba2"
+ "WESTUS:20200721T164457Z:769b5552-8311-4ff6-a6fc-fe0295ce5b3f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:44 GMT"
+ "Tue, 21 Jul 2020 16:44:56 GMT"
],
"Content-Length": [
"890"
@@ -588,17 +588,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/remove-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e673e838-debe-4686-8ead-450888fdee21"
+ "51c3a2cf-c6c2-41b6-bb0c-e3a2b0e3a949"
],
"Accept-Language": [
"en-US"
@@ -607,7 +607,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -618,13 +618,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC5w=\""
+ "\"AAAAAAAAPeI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "45161ba1-348e-4a74-8ca9-abbd6a2c5ed7"
+ "6e8d6a48-37c3-4ed3-bc8e-28f8df1412ba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +633,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "2d73cd0e-a171-43f8-92a3-2ee167a27eb8"
+ "cbe77767-9ac9-46bf-80e7-fe09a144b443"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:2d73cd0e-a171-43f8-92a3-2ee167a27eb8"
+ "WESTUS:20200721T164457Z:cbe77767-9ac9-46bf-80e7-fe09a144b443"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:44 GMT"
+ "Tue, 21 Jul 2020 16:44:56 GMT"
],
"Content-Length": [
"900"
@@ -654,17 +654,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-header-only?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d544cad-648f-41d7-814c-ac1be768cec5"
+ "535b8e34-6295-4c40-a916-4e69d5c1b1be"
],
"Accept-Language": [
"en-US"
@@ -673,7 +673,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -684,13 +684,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC50=\""
+ "\"AAAAAAAAPeM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3877889-1b3a-4930-9c2a-0172081e54a4"
+ "45b95832-58f1-423e-b5a8-b60c6e8d9bef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -699,16 +699,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "9cf9211b-9070-498f-8c09-c3f99cbd6942"
+ "7682b01f-d783-41e0-9d55-95be0f51f900"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:9cf9211b-9070-498f-8c09-c3f99cbd6942"
+ "WESTUS:20200721T164457Z:7682b01f-d783-41e0-9d55-95be0f51f900"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:44 GMT"
+ "Tue, 21 Jul 2020 16:44:56 GMT"
],
"Content-Length": [
"895"
@@ -720,17 +720,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05b94571-abd9-4009-a8b4-c26f660f6042"
+ "a37de18f-c1d4-4595-946d-a8bf48fdac14"
],
"Accept-Language": [
"en-US"
@@ -739,7 +739,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -750,13 +750,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC5g=\""
+ "\"AAAAAAAAPd4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b4716568-65b6-438c-8545-d8dad83ae0e2"
+ "f2dcb570-003c-4e3e-9a4d-4958eacf530b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -765,16 +765,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "f9178809-8b9f-4ca0-aabd-0fbc1b48f26a"
+ "5aaad265-4f14-423b-8b3f-36047ed606e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:f9178809-8b9f-4ca0-aabd-0fbc1b48f26a"
+ "WESTUS:20200721T164457Z:5aaad265-4f14-423b-8b3f-36047ed606e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:44 GMT"
+ "Tue, 21 Jul 2020 16:44:57 GMT"
],
"Content-Length": [
"1474"
@@ -786,17 +786,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource-cached?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2f5cd5e-27d2-4761-9264-57c2cc9fa1ff"
+ "589239b3-84b8-4e71-bc67-4fd483bee799"
],
"Accept-Language": [
"en-US"
@@ -805,7 +805,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,13 +816,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC5k=\""
+ "\"AAAAAAAAPd8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9b4bde3e-2980-44f2-98bc-6612aef9805d"
+ "b235e951-a3fc-48b1-91dc-020a9bf38de3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -831,16 +831,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "de922c61-808a-469a-aeca-1b38fabacb54"
+ "67a17b47-7431-418b-929f-2e9b5f7d4b8d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193744Z:de922c61-808a-469a-aeca-1b38fabacb54"
+ "WESTUS:20200721T164457Z:67a17b47-7431-418b-929f-2e9b5f7d4b8d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:44 GMT"
+ "Tue, 21 Jul 2020 16:44:57 GMT"
],
"Content-Length": [
"1551"
@@ -852,17 +852,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzU0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1370\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps6883\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps3460\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7933\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9516\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps4142\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps9691\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "142f3433-2b0a-47bd-b36d-43a32a230e3d"
+ "b3d3c584-ae32-4fed-aede-c896f922bca7"
],
"Accept-Language": [
"en-US"
@@ -871,7 +871,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -888,13 +888,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC6c=\""
+ "\"AAAAAAAAPe8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "28b31063-b4c1-439a-83e8-bd225678f462"
+ "c6c7d9f9-7beb-4151-9878-57f7d5fa9517"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -903,19 +903,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "03cb02d0-37c3-4f79-9f37-11019b8cb6d6"
+ "ea0b5ffe-e28d-4e00-a4af-824db165248a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193746Z:03cb02d0-37c3-4f79-9f37-11019b8cb6d6"
+ "WESTUS:20200721T164501Z:ea0b5ffe-e28d-4e00-a4af-824db165248a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:45 GMT"
+ "Tue, 21 Jul 2020 16:45:01 GMT"
],
"Content-Length": [
- "1364"
+ "1366"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -924,12 +924,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2754\",\r\n \"properties\": {\r\n \"displayName\": \"ps3460\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1370\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7933\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\",\r\n \"name\": \"ps46\",\r\n \"description\": \"ps9008\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1548\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7862\",\r\n \"properties\": {\r\n \"displayName\": \"ps9691\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9516\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"name\": \"ps2032\",\r\n \"description\": \"ps6415\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzU0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -937,7 +937,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -948,31 +948,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC6c=\""
+ "\"AAAAAAAAPe8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a3d4bca8-bf8f-4736-86c1-4f497c1643ff"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "b179c5f7-4acf-4ff9-91cd-7a0566407e98"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
"x-ms-correlation-request-id": [
- "be8d8da3-bdc0-4851-baef-5870b4f05729"
+ "dcd27038-6817-460f-b971-ae63ec3094fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193816Z:be8d8da3-bdc0-4851-baef-5870b4f05729"
+ "WESTUS:20200721T164531Z:dcd27038-6817-460f-b971-ae63ec3094fe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:15 GMT"
+ "Tue, 21 Jul 2020 16:45:31 GMT"
],
"Content-Length": [
"988"
@@ -984,17 +984,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2754\",\r\n \"properties\": {\r\n \"displayName\": \"ps3460\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1370\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7933\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7862\",\r\n \"properties\": {\r\n \"displayName\": \"ps9691\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9516\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75c8c86f-3979-4ae8-9f6d-18d189941527"
+ "96152717-14e6-4f85-839d-eff5d94757cc"
],
"If-Match": [
"*"
@@ -1006,7 +1006,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1020,7 +1020,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f81551d5-6235-40b6-9540-5a44851f2e62"
+ "e34b9f05-dd3a-486f-902e-1563f79952fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1029,16 +1029,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b187bae5-966b-442f-9503-c4742d1942e5"
+ "ec841790-67d8-4bc2-aade-9ea34aeda456"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193816Z:b187bae5-966b-442f-9503-c4742d1942e5"
+ "WESTUS:20200721T164533Z:ec841790-67d8-4bc2-aade-9ea34aeda456"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:16 GMT"
+ "Tue, 21 Jul 2020 16:45:32 GMT"
],
"Expires": [
"-1"
@@ -1051,13 +1051,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzU0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "262f8393-49ac-47b7-aed5-e6667b169716"
+ "e5c2dca3-c7e1-4f35-a003-6e072b9ceb82"
],
"If-Match": [
"*"
@@ -1069,7 +1069,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1083,7 +1083,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "985adfa5-9f78-44ad-8692-6388d599fa2e"
+ "e78bf280-c782-40bf-b0fd-0f6bea123296"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1092,16 +1092,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "cabc3ee1-8fe3-471a-b87e-e0dc9261aa77"
+ "3ceeb70f-d9bb-4b5c-aa5f-28a4b2e00308"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193817Z:cabc3ee1-8fe3-471a-b87e-e0dc9261aa77"
+ "WESTUS:20200721T164534Z:3ceeb70f-d9bb-4b5c-aa5f-28a4b2e00308"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:16 GMT"
+ "Tue, 21 Jul 2020 16:45:33 GMT"
],
"Expires": [
"-1"
@@ -1114,13 +1114,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjg4Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDE0Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "485842b2-703d-4344-8a57-4d13db3d9231"
+ "bb3cf3d7-6a25-42c2-8dd0-cbb27737419c"
],
"If-Match": [
"*"
@@ -1132,7 +1132,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1146,7 +1146,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3d21d4c6-43ae-4160-8999-3a2e7a2addd2"
+ "c0f2e360-02be-441c-bb21-706a5797f39c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1155,16 +1155,16 @@
"14997"
],
"x-ms-correlation-request-id": [
- "9652d794-5b21-4d71-a66b-92582ffe500a"
+ "0c6e105c-4bd5-4c2b-bd18-6a5930a10488"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193817Z:9652d794-5b21-4d71-a66b-92582ffe500a"
+ "WESTUS:20200721T164534Z:0c6e105c-4bd5-4c2b-bd18-6a5930a10488"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:16 GMT"
+ "Tue, 21 Jul 2020 16:45:33 GMT"
],
"Expires": [
"-1"
@@ -1176,18 +1176,18 @@
],
"Names": {
"": [
- "ps4910",
- "ps6883",
- "ps2754",
- "ps46",
- "ps1548",
- "ps9008",
- "ps5700",
- "ps6225",
- "ps3384",
- "ps3460",
- "ps1370",
- "ps7933"
+ "ps1067",
+ "ps4142",
+ "ps7862",
+ "ps2032",
+ "ps2138",
+ "ps6415",
+ "ps3982",
+ "ps8138",
+ "ps1879",
+ "ps9691",
+ "ps9516",
+ "ps6901"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json
index acec183552cb..d8cd6b8116d0 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86c35db3-cc62-44bb-a391-caf26483c342"
+ "f89855fd-3eb1-4327-83f2-b326b25d7820"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,25 +30,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d505c2fe-bad4-4050-a43a-1ab41e07c581"
+ "724c9112-5d98-47fa-8414-9b42e8d92aee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "fdb6bc33-0e98-443d-8022-54bdfea8d23e"
+ "8582d53b-1c74-466a-bf6d-eea192defffd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193612Z:fdb6bc33-0e98-443d-8022-54bdfea8d23e"
+ "WESTUS:20200721T164328Z:8582d53b-1c74-466a-bf6d-eea192defffd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:12 GMT"
+ "Tue, 21 Jul 2020 16:43:28 GMT"
],
"Content-Length": [
"729"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0d2cddc-cd90-4359-8a2e-2ce8a3cbdc00"
+ "26475e3c-40e4-49a4-bd94-3f32d1dcb308"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +90,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACm8=\""
+ "\"AAAAAAAAPIk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5e35f1f7-f652-416d-8315-4ea7823baf47"
+ "57c979b1-25d6-42ed-8f1d-ad05b845310b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-correlation-request-id": [
- "4054491a-839f-4bfb-9c01-3572c4fe23a4"
+ "7b8a32cb-9fca-42bc-b001-43885fe76f97"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193613Z:4054491a-839f-4bfb-9c01-3572c4fe23a4"
+ "WESTUS:20200721T164329Z:7b8a32cb-9fca-42bc-b001-43885fe76f97"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:13 GMT"
+ "Tue, 21 Jul 2020 16:43:28 GMT"
],
"Content-Length": [
"747"
@@ -136,7 +136,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22457ca2-23ac-4210-9944-5633b30c5606"
+ "56c13013-3d08-416f-ad65-26aaad095918"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,25 +159,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "309b50e7-15b2-4d30-927d-4afdc17d97b7"
+ "0564d318-9006-4519-84f1-07c0bae45f84"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "b7e92a20-310f-4157-9f05-efa250c535ef"
+ "02ab704c-6a6a-4684-bc47-33f1df886c31"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193613Z:b7e92a20-310f-4157-9f05-efa250c535ef"
+ "WESTUS:20200721T164329Z:02ab704c-6a6a-4684-bc47-33f1df886c31"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:13 GMT"
+ "Tue, 21 Jul 2020 16:43:28 GMT"
],
"Content-Length": [
"729"
@@ -193,13 +193,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2775\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"displayName\": \"ps5600\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1666\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"displayName\": \"ps9238\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3eb746c-ea99-4f84-9ee5-4e4bfda6622e"
+ "6107f342-abd0-459d-bf49-854820347fa5"
],
"Accept-Language": [
"en-US"
@@ -208,13 +208,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "328"
+ "327"
]
},
"ResponseHeaders": {
@@ -225,34 +225,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC14=\""
+ "\"AAAAAAAAPaQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77a1a5c5-95fe-41c1-adeb-67d9c1f40b93"
+ "c515efde-1b18-4643-a22b-4aef30b6a750"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "c0260fbb-f08b-433a-a746-d463f54e723b"
+ "09ef41b6-fe97-4c67-b7df-de20a6edd4f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193613Z:c0260fbb-f08b-433a-a746-d463f54e723b"
+ "WESTUS:20200721T164329Z:09ef41b6-fe97-4c67-b7df-de20a6edd4f5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:13 GMT"
+ "Tue, 21 Jul 2020 16:43:28 GMT"
],
"Content-Length": [
- "739"
+ "738"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps5600\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2775\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1707\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps6201\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3289\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3818\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e57f565f-c876-4676-9c41-0b425572fd9d"
+ "7fff3264-2d46-44f6-a594-dc4645fbea68"
],
"If-Match": [
"*"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -300,31 +300,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC2I=\""
+ "\"AAAAAAAAPag=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "866303f8-6b24-4004-b8ef-a26ff2370276"
+ "6e9363e0-542d-4ac7-b18b-2f5a2cdc85f6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "38c129ba-b3c7-4b73-99f8-d5333dba659a"
+ "06f54a25-6415-485f-8f95-3c6f2ac8ee38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193648Z:38c129ba-b3c7-4b73-99f8-d5333dba659a"
+ "WESTUS:20200721T164404Z:06f54a25-6415-485f-8f95-3c6f2ac8ee38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:47 GMT"
+ "Tue, 21 Jul 2020 16:44:04 GMT"
],
"Content-Length": [
"727"
@@ -336,17 +336,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1707\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps6201\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3289\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3818\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1115b41b-88c2-47f8-a00e-7f364092486b"
+ "28cd7cdd-cc32-479f-9e8d-10be8169e8ea"
],
"If-Match": [
"*"
@@ -358,7 +358,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -375,31 +375,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC2Y=\""
+ "\"AAAAAAAAPaw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4fcb7c30-5cd5-4562-b266-5983f55c2172"
+ "bd541e2b-68aa-4491-bba0-0492a38351c1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "d77954f8-2680-4451-8082-296db1a80ade"
+ "c254f7dc-5c32-442d-93a5-7c2eb1750f94"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193648Z:d77954f8-2680-4451-8082-296db1a80ade"
+ "WESTUS:20200721T164405Z:c254f7dc-5c32-442d-93a5-7c2eb1750f94"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:48 GMT"
+ "Tue, 21 Jul 2020 16:44:05 GMT"
],
"Content-Length": [
"727"
@@ -411,12 +411,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -424,7 +424,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,34 +435,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC14=\""
+ "\"AAAAAAAAPaQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86b57594-25a3-4c0c-be05-2630dc022658"
+ "0848a60d-fd19-454d-a38e-9c94629045bd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "ac12ef30-e4b7-4baa-808e-732e96a2c99f"
+ "67763728-507a-4a52-a0ad-2fa21c3d5648"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193643Z:ac12ef30-e4b7-4baa-808e-732e96a2c99f"
+ "WESTUS:20200721T164400Z:67763728-507a-4a52-a0ad-2fa21c3d5648"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:43 GMT"
+ "Tue, 21 Jul 2020 16:43:59 GMT"
],
"Content-Length": [
- "739"
+ "738"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,17 +471,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps5600\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2775\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cec3ae86-4b94-4ffd-ab29-74d3921eb6af"
+ "5ecb91ff-38df-454f-9901-34ff59931a45"
],
"Accept-Language": [
"en-US"
@@ -490,7 +490,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,34 +501,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC14=\""
+ "\"AAAAAAAAPaQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "125e5aaa-381a-406b-8f28-15395a82a7a6"
+ "1465cf79-24c3-439b-ac68-05bc2258aad8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "11290002-1565-4ec6-9bf2-ea8779124e94"
+ "a9d92b61-4414-4cf0-b2ca-c5c7199b6cf5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193643Z:11290002-1565-4ec6-9bf2-ea8779124e94"
+ "WESTUS:20200721T164400Z:a9d92b61-4414-4cf0-b2ca-c5c7199b6cf5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:43 GMT"
+ "Tue, 21 Jul 2020 16:44:00 GMT"
],
"Content-Length": [
- "739"
+ "738"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,17 +537,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps5600\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2775\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f1677ce-28a6-4b7c-9c02-acade576b461"
+ "da40373c-9e30-4b9a-bf90-730a3a7c4c75"
],
"Accept-Language": [
"en-US"
@@ -556,7 +556,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -567,31 +567,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC2I=\""
+ "\"AAAAAAAAPag=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3f5d8b92-6cc1-487f-82fc-8a5d40575747"
+ "638134c2-11b0-488a-bf6d-8b298b674684"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-correlation-request-id": [
- "d023c9ff-1d27-4afc-b606-beb4c0453014"
+ "cf534705-3930-4404-b0d5-aa5afe06849c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193648Z:d023c9ff-1d27-4afc-b606-beb4c0453014"
+ "WESTUS:20200721T164404Z:cf534705-3930-4404-b0d5-aa5afe06849c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:47 GMT"
+ "Tue, 21 Jul 2020 16:44:04 GMT"
],
"Content-Length": [
"727"
@@ -603,7 +603,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -613,7 +613,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7f5ac00-39f9-4f66-bdd6-b2e5d6d7c59c"
+ "699f7946-15e6-4665-b464-fdd71680a5c9"
],
"Accept-Language": [
"en-US"
@@ -622,7 +622,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,25 +636,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "07f1ad7d-35c9-45a1-99b2-e2637771b460"
+ "4014b5f9-00fc-48c6-bf59-ae86dd6833e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
],
"x-ms-correlation-request-id": [
- "44edfef8-f885-45a5-bec1-0d016c42c417"
+ "b108afab-f359-4dcd-81a2-ee60d12a2bd5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193649Z:44edfef8-f885-45a5-bec1-0d016c42c417"
+ "WESTUS:20200721T164405Z:b108afab-f359-4dcd-81a2-ee60d12a2bd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:48 GMT"
+ "Tue, 21 Jul 2020 16:44:05 GMT"
],
"Content-Length": [
"1287"
@@ -670,13 +670,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczc1Nzg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczE4ODQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48989835-6fc0-4d34-853a-ced37ad1f16c"
+ "ec77fdfd-ad5d-47ba-ab6a-354653b168bd"
],
"Accept-Language": [
"en-US"
@@ -685,7 +685,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -696,31 +696,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC2Y=\""
+ "\"AAAAAAAAPaw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f1920edb-4636-4dad-898a-33b9e9fab720"
+ "ed6ebad1-9d9b-426b-94b8-7088d285bd75"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-correlation-request-id": [
- "c33cf1bd-946a-4314-b7c5-8cb7ceaa770a"
+ "361a4bfc-71e1-40ed-9fd5-92dad8001b10"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193649Z:c33cf1bd-946a-4314-b7c5-8cb7ceaa770a"
+ "WESTUS:20200721T164405Z:361a4bfc-71e1-40ed-9fd5-92dad8001b10"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:48 GMT"
+ "Tue, 21 Jul 2020 16:44:05 GMT"
],
"Content-Length": [
"629"
@@ -732,7 +732,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -742,7 +742,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86348b6c-dcb5-4a38-9726-717472e6a53b"
+ "439c3cae-bbfc-4644-a00d-e0f6b9936572"
],
"Accept-Language": [
"en-US"
@@ -751,7 +751,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -765,25 +765,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "706eff14-bc1b-4b63-8bfc-704fda2d6579"
+ "6022f909-e0bc-4854-8ef3-827e8bac6429"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11991"
],
"x-ms-correlation-request-id": [
- "33fbbf0e-3683-4fad-95b9-4d583edc93e2"
+ "2b17e278-8fd2-4415-a273-f9f1c4b62b5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193649Z:33fbbf0e-3683-4fad-95b9-4d583edc93e2"
+ "WESTUS:20200721T164405Z:2b17e278-8fd2-4415-a273-f9f1c4b62b5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:48 GMT"
+ "Tue, 21 Jul 2020 16:44:05 GMT"
],
"Content-Length": [
"1482"
@@ -795,7 +795,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
@@ -805,7 +805,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ef7d6c3-53f5-4faa-904c-77c7488822c7"
+ "effba4dd-f02f-4db4-98dd-d8c51f77912f"
],
"Accept-Language": [
"en-US"
@@ -814,7 +814,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -828,25 +828,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cfe739e2-60b3-413b-9a15-d7aac42ae338"
+ "088a9b60-569f-4ab4-9ade-295d959f49e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-correlation-request-id": [
- "046e8485-6d29-445e-9926-0c3a20cdc250"
+ "d3cff6ca-066c-4978-9218-da8d56ced932"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193649Z:046e8485-6d29-445e-9926-0c3a20cdc250"
+ "WESTUS:20200721T164406Z:d3cff6ca-066c-4978-9218-da8d56ced932"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:49 GMT"
+ "Tue, 21 Jul 2020 16:44:05 GMT"
],
"Content-Length": [
"755"
@@ -862,13 +862,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczc1Nzg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczE4ODQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6097cbb0-0fb8-4b85-83c5-cdb221b4e72b"
+ "62aaaf08-f22f-4316-8d99-dfd4ee06627b"
],
"Accept-Language": [
"en-US"
@@ -877,7 +877,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -891,7 +891,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d2fefa38-246b-4310-a227-86032a872390"
+ "bbffec42-b004-47ed-a04e-8721b1f1e72a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -900,16 +900,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "30fd0dba-cfb4-47b1-972d-a8ee3327d178"
+ "7c2091fa-c360-42e8-8ad9-c6bc7ad1600d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193649Z:30fd0dba-cfb4-47b1-972d-a8ee3327d178"
+ "WESTUS:20200721T164406Z:7c2091fa-c360-42e8-8ad9-c6bc7ad1600d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:49 GMT"
+ "Tue, 21 Jul 2020 16:44:05 GMT"
],
"Expires": [
"-1"
@@ -922,13 +922,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6867cf55-96ae-49fd-bf94-83289522b76d"
+ "109fdf21-7be9-42d0-89ec-f0967cd32869"
],
"If-Match": [
"*"
@@ -940,7 +940,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -954,7 +954,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "02eb5230-ebdf-42f9-a60b-5d0d13c888a2"
+ "2450f9a1-c8cd-4b75-8645-3df4ea82f598"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -963,16 +963,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "c952d239-5b7b-4da2-a11f-3e4158186305"
+ "2f699a5e-5a30-47f1-afe2-ba16de9a8251"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193649Z:c952d239-5b7b-4da2-a11f-3e4158186305"
+ "WESTUS:20200721T164407Z:2f699a5e-5a30-47f1-afe2-ba16de9a8251"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:49 GMT"
+ "Tue, 21 Jul 2020 16:44:06 GMT"
],
"Expires": [
"-1"
@@ -987,17 +987,17 @@
],
"Names": {
"": [
- "ps7578",
- "ps5600",
- "ps2775",
- "ps7791",
- "ps9343",
- "ps1901",
- "ps6201",
- "ps1707",
- "ps9934",
- "ps9189",
- "ps9899"
+ "ps1884",
+ "ps9238",
+ "ps1666",
+ "ps5503",
+ "ps636",
+ "ps5648",
+ "ps3818",
+ "ps3289",
+ "ps6336",
+ "ps3951",
+ "ps6386"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json
index dcdec40b26cc..8a1c31a9d5ec 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "189eb648-28c7-439b-a3c1-f18fe4bd411d"
+ "1503920e-db09-4e22-aed7-01c926f3a96e"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6d3dc293-6090-4280-9fdf-5756adf0a77d"
+ "99da0789-af78-49e8-a7e4-8f648e38dff7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "63689557-71e6-497f-99df-27a717865304"
+ "1c66535e-4c9e-4bea-8f7c-b72fa2c2ac24"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193436Z:63689557-71e6-497f-99df-27a717865304"
+ "WESTUS:20200721T164154Z:1c66535e-4c9e-4bea-8f7c-b72fa2c2ac24"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:36 GMT"
+ "Tue, 21 Jul 2020 16:41:53 GMT"
],
"Content-Length": [
"729"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53e53dbd-5717-4d76-9d80-2af67df3e62b"
+ "ad037c5c-e0d9-49af-9c02-32c8e1b7d747"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6db5c9ca-e65b-41b4-b0b3-0447fa89251c"
+ "34d9798c-6427-4cf8-8a75-172f84ab4e1c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -102,16 +102,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "477ce206-d2e8-4d37-8952-8dfac29917bd"
+ "7d45ef80-9c84-4a6b-b139-315d98e7a38e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193437Z:477ce206-d2e8-4d37-8952-8dfac29917bd"
+ "WESTUS:20200721T164154Z:7d45ef80-9c84-4a6b-b139-315d98e7a38e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:36 GMT"
+ "Tue, 21 Jul 2020 16:41:54 GMT"
],
"Content-Length": [
"34"
@@ -133,7 +133,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "485160f8-1b7e-4040-8111-6a8696b34673"
+ "b2fc8fec-fe81-4ccb-8297-1bcc96768f8e"
],
"Accept-Language": [
"en-US"
@@ -142,7 +142,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,7 +156,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8735d7f1-99da-4577-a677-ad3c12eafd29"
+ "4dada461-2636-46ec-912b-5b6477a219fb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -165,16 +165,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "29214364-44a1-4f66-82ff-ea5e066cd307"
+ "fdb503b5-5399-46d7-b54d-7092f62937c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193442Z:29214364-44a1-4f66-82ff-ea5e066cd307"
+ "WESTUS:20200721T164159Z:fdb503b5-5399-46d7-b54d-7092f62937c7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:41 GMT"
+ "Tue, 21 Jul 2020 16:41:58 GMT"
],
"Content-Length": [
"34"
@@ -190,13 +190,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0NjU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps8235\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"5295f6ca-23b6-450c-8e22-586d04091ab7\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps213\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"e542043e-271b-4229-a821-33f9332d33fe\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7aeb2215-4231-4666-b709-e870cf7ec022"
+ "f4410aef-3e08-419e-a2a7-f40119d628be"
],
"Accept-Language": [
"en-US"
@@ -205,13 +205,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "222"
+ "221"
]
},
"ResponseHeaders": {
@@ -222,13 +222,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACw0=\""
+ "\"AAAAAAAAPVM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5d49fdf2-1863-4e93-b399-ee8324e81412"
+ "27199e1b-dfca-4be0-aa99-069c7420b053"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,19 +237,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "fc248036-c2de-449e-9a45-b824371d4047"
+ "fdc262df-0178-4e9a-88bc-9f428cc4b6f2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193439Z:fc248036-c2de-449e-9a45-b824371d4047"
+ "WESTUS:20200721T164157Z:fdc262df-0178-4e9a-88bc-9f428cc4b6f2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:39 GMT"
+ "Tue, 21 Jul 2020 16:41:56 GMT"
],
"Content-Length": [
- "505"
+ "504"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,17 +258,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps4655\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps8235\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5eab284fa2ca601230023193}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9145\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps213\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171ad5a2ca600fe4c29707}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a607afa-fb1f-4484-9063-0ed7a890825d"
+ "c3bbf645-b4da-4879-a197-2cefb94eabb2"
],
"Accept-Language": [
"en-US"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +294,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACw8=\""
+ "\"AAAAAAAAPVU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b6cbe3b0-3919-42f4-86b4-61af1d3d74d6"
+ "eca9a789-94ee-4872-abcf-a9fa485dbc85"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "943ff2d2-7d96-4748-b3d0-ac896b1badb3"
+ "847b5c81-0c56-4007-9de2-0ad8582a5b27"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193440Z:943ff2d2-7d96-4748-b3d0-ac896b1badb3"
+ "WESTUS:20200721T164158Z:847b5c81-0c56-4007-9de2-0ad8582a5b27"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:39 GMT"
+ "Tue, 21 Jul 2020 16:41:57 GMT"
],
"Content-Length": [
"1417"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52c9cdae-d56b-467a-84e6-5be2d99b6089"
+ "9bdaf88e-fc78-4777-ad33-e5932ebef382"
],
"If-Match": [
"*"
@@ -352,7 +352,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -369,13 +369,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACxI=\""
+ "\"AAAAAAAAPVg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "26593e88-ca61-4a8a-9ebf-2156ac35df24"
+ "dcf3b52e-1248-46b7-8bb5-77d9226e1759"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -384,16 +384,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "84b275be-3a32-4166-a6e9-9dde96f2c555"
+ "2c8ee5a5-7313-486e-8a00-226aeff34a35"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193440Z:84b275be-3a32-4166-a6e9-9dde96f2c555"
+ "WESTUS:20200721T164158Z:2c8ee5a5-7313-486e-8a00-226aeff34a35"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:40 GMT"
+ "Tue, 21 Jul 2020 16:41:57 GMT"
],
"Content-Length": [
"1076"
@@ -405,7 +405,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -415,7 +415,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d1b75a47-5cfb-4c1d-bbbd-785e36e841d2"
+ "5d8e8854-f4bd-4f8e-8375-f05f4ef54529"
],
"Accept-Language": [
"en-US"
@@ -424,7 +424,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,13 +435,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACxI=\""
+ "\"AAAAAAAAPVg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "40f16e6c-dcec-4a10-a152-95814b484af8"
+ "0a5e4dc9-d549-4869-a5f7-fe80fad2a675"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -450,16 +450,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "48d6fc92-555f-4afc-b29d-d10257c8a0b7"
+ "eab164a6-9d72-40c0-88dd-fc6d13169fab"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193440Z:48d6fc92-555f-4afc-b29d-d10257c8a0b7"
+ "WESTUS:20200721T164158Z:eab164a6-9d72-40c0-88dd-fc6d13169fab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:40 GMT"
+ "Tue, 21 Jul 2020 16:41:58 GMT"
],
"Content-Length": [
"1076"
@@ -471,7 +471,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -481,7 +481,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc3b68c2-d349-40de-8cee-dfb7b144c969"
+ "f15d7538-ebed-49fb-870a-5dd9b34bab2b"
],
"Accept-Language": [
"en-US"
@@ -490,7 +490,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,13 +501,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACxI=\""
+ "\"AAAAAAAAPVg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0f5cd9e1-a302-4c49-a8d8-73ad45c14a36"
+ "704fce42-8f47-4f16-bc48-78f709cf5d6b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -516,16 +516,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "b1c1e952-c9c7-4217-97fc-93eb63101761"
+ "6ac168bc-47bc-4016-bbf3-9bff6f56dffb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193441Z:b1c1e952-c9c7-4217-97fc-93eb63101761"
+ "WESTUS:20200721T164158Z:6ac168bc-47bc-4016-bbf3-9bff6f56dffb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:41 GMT"
+ "Tue, 21 Jul 2020 16:41:58 GMT"
],
"Content-Length": [
"1076"
@@ -537,7 +537,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -547,7 +547,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12d510b8-1a2e-4d30-82fb-33789afd2d94"
+ "a41fe85b-d5b2-4ce4-b498-cfaafbe12365"
],
"If-Match": [
"*"
@@ -559,7 +559,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -573,7 +573,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "792526bc-ff88-4393-83b3-94b386accf2a"
+ "205a8886-ee98-4999-8958-04a1fbd73792"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -582,16 +582,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "79409654-ba28-49c8-a072-7c08b8f157be"
+ "e2e8a532-1b65-4f86-8095-0d7a1625a285"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193441Z:79409654-ba28-49c8-a072-7c08b8f157be"
+ "WESTUS:20200721T164159Z:e2e8a532-1b65-4f86-8095-0d7a1625a285"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:41 GMT"
+ "Tue, 21 Jul 2020 16:41:58 GMT"
],
"Expires": [
"-1"
@@ -610,7 +610,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30dcdaf6-cb8a-4112-b2a0-19cc0a370822"
+ "1d398d95-749c-4ba0-a927-e396ff1447e0"
],
"If-Match": [
"*"
@@ -622,7 +622,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,7 +636,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b6f0d02f-a795-42e7-a9aa-e8e32aa78de4"
+ "40e72632-34eb-4ca4-8a58-0d0b6e111767"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,16 +645,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "f059df8f-e509-486a-9ed7-4dcc10a0ab20"
+ "947e4499-92f5-4536-8d7f-1b96d56fa64f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193442Z:f059df8f-e509-486a-9ed7-4dcc10a0ab20"
+ "WESTUS:20200721T164159Z:947e4499-92f5-4536-8d7f-1b96d56fa64f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:41 GMT"
+ "Tue, 21 Jul 2020 16:41:58 GMT"
],
"Expires": [
"-1"
@@ -664,13 +664,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0NjU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "209257b9-ad1c-4e51-a7b2-28c909793c93"
+ "5849e202-6e22-45b2-baac-c3f9420a8010"
],
"If-Match": [
"*"
@@ -682,7 +682,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -696,7 +696,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bdca8066-89fa-4a76-8496-21425bab3e14"
+ "02c332d0-7c27-43f2-a493-1dd15d646e49"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -705,16 +705,16 @@
"14997"
],
"x-ms-correlation-request-id": [
- "cb56155f-d6f3-4070-900b-39807bdb78f0"
+ "04fe11a4-9925-4d85-b459-504a6fd93ce9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193442Z:cb56155f-d6f3-4070-900b-39807bdb78f0"
+ "WESTUS:20200721T164159Z:04fe11a4-9925-4d85-b459-504a6fd93ce9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:41 GMT"
+ "Tue, 21 Jul 2020 16:41:59 GMT"
],
"Expires": [
"-1"
@@ -733,7 +733,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed62df50-7fca-4119-9228-fcf8fec92a7f"
+ "1c040cef-6b8d-49cb-9e42-a51dd320f140"
],
"Accept-Language": [
"en-US"
@@ -742,7 +742,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,7 +756,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "285cfc1d-3902-43a1-85ec-7e334e60026c"
+ "1ddb45c6-80d4-44b8-a1df-b59ef582c281"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -765,16 +765,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "090617ad-8e30-4544-a003-6712f9d9faea"
+ "d354d078-8463-49de-97e4-ea741688662e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193442Z:090617ad-8e30-4544-a003-6712f9d9faea"
+ "WESTUS:20200721T164159Z:d354d078-8463-49de-97e4-ea741688662e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:41 GMT"
+ "Tue, 21 Jul 2020 16:41:59 GMT"
],
"Content-Length": [
"505"
@@ -786,17 +786,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab284fa2ca601230023192\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab284fa2ca601230023192\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab284fa2ca601230023193\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ad5a2ca600fe4c29706\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171ad5a2ca600fe4c29706\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171ad5a2ca600fe4c29707\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab284fa2ca601230023192?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyODRmYTJjYTYwMTIzMDAyMzE5Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ad5a2ca600fe4c29706?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWQ1YTJjYTYwMGZlNGMyOTcwNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da29d94e-f29f-4f20-8cd3-ab00946c21ba"
+ "a01c1ceb-4004-4946-8f96-d3718c2cd762"
],
"If-Match": [
"*"
@@ -808,7 +808,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -822,7 +822,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ccfedd5-3fd2-42f9-a64e-14891ef163e5"
+ "83abec57-4a3b-47e0-a523-7e65e8ba4a48"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -831,16 +831,16 @@
"14996"
],
"x-ms-correlation-request-id": [
- "838a0350-46b8-4574-b0fd-5aa59a46582f"
+ "8f938687-35f3-4652-bd80-3d79f24f9532"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193442Z:838a0350-46b8-4574-b0fd-5aa59a46582f"
+ "WESTUS:20200721T164200Z:8f938687-35f3-4652-bd80-3d79f24f9532"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:42 GMT"
+ "Tue, 21 Jul 2020 16:41:59 GMT"
],
"Expires": [
"-1"
@@ -855,8 +855,8 @@
],
"Names": {
"": [
- "ps4655",
- "ps8235"
+ "ps9145",
+ "ps213"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json
index 291800c2b9a4..08328bacc25d 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"{\\r\\n \\\"openapi\\\": \\\"3.0.0\\\",\\r\\n \\\"servers\\\": [\\r\\n {\\r\\n \\\"url\\\": \\\"http://petstore.swagger.io/v2\\\"\\r\\n }\\r\\n ],\\r\\n \\\"info\\\": {\\r\\n \\\"description\\\": \\\":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\\\",\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore\\\",\\r\\n \\\"termsOfService\\\": \\\"http://swagger.io/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"email\\\": \\\"apiteam@swagger.io\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"Apache 2.0\\\",\\r\\n \\\"url\\\": \\\"http://www.apache.org/licenses/LICENSE-2.0.html\\\"\\r\\n }\\r\\n },\\r\\n \\\"tags\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"description\\\": \\\"Everything about your Pets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"Find out more\\\",\\r\\n \\\"url\\\": \\\"http://swagger.io\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"store\\\",\\r\\n \\\"description\\\": \\\"Access to Petstore orders\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"user\\\",\\r\\n \\\"description\\\": \\\"Operations about user\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"Find out more about our store\\\",\\r\\n \\\"url\\\": \\\"http://swagger.io\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/pet\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Add a new pet to the store\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Invalid input\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n },\\r\\n \\\"put\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Update an existing pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"updatePet\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n },\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Validation exception\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/pet/findByStatus\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Finds Pets by status\\\",\\r\\n \\\"description\\\": \\\"Multiple status values can be provided with comma separated strings\\\",\\r\\n \\\"operationId\\\": \\\"findPetsByStatus\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"status\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"Status values that need to be considered for filter\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"explode\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"available\\\",\\r\\n \\\"pending\\\",\\r\\n \\\"sold\\\"\\r\\n ],\\r\\n \\\"default\\\": \\\"available\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid status value\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"/pet/findByTags\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Finds Pets by tags\\\",\\r\\n \\\"description\\\": \\\"Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.\\\",\\r\\n \\\"operationId\\\": \\\"findPetsByTags\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"Tags to filter by\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"explode\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid tag value\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"deprecated\\\": true\\r\\n }\\r\\n },\\r\\n \\\"/pet/{petId}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Find pet by ID\\\",\\r\\n \\\"description\\\": \\\"Returns a single pet\\\",\\r\\n \\\"operationId\\\": \\\"getPetById\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to return\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"api_key\\\": []\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Updates a pet in the store with form data\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"updatePetWithForm\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet that needs to be updated\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Invalid input\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/x-www-form-urlencoded\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"name\\\": {\\r\\n \\\"description\\\": \\\"Updated name of the pet\\\",\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"description\\\": \\\"Updated status of the pet\\\",\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Deletes a pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"api_key\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"Pet id to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"/pet/{petId}/uploadImage\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"uploads an image\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"uploadFile\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to update\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/ApiResponse\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/octet-stream\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"binary\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/store/inventory\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Returns pet inventories by status\\\",\\r\\n \\\"description\\\": \\\"Returns a map of status codes to quantities\\\",\\r\\n \\\"operationId\\\": \\\"getInventory\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"additionalProperties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"api_key\\\": []\\r\\n }\\r\\n ],\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/store/order\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Place an order for a pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"placeOrder\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"order placed for purchasing the pet\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/store/order/{orderId}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Find purchase order by ID\\\",\\r\\n \\\"description\\\": \\\"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions\\\",\\r\\n \\\"operationId\\\": \\\"getOrderById\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"orderId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet that needs to be fetched\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\",\\r\\n \\\"minimum\\\": 1,\\r\\n \\\"maximum\\\": 10\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Order not found\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Delete purchase order by ID\\\",\\r\\n \\\"description\\\": \\\"For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors\\\",\\r\\n \\\"operationId\\\": \\\"deleteOrder\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"orderId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of the order that needs to be deleted\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\",\\r\\n \\\"minimum\\\": 1\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Order not found\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/user\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Create user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"createUser\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Created user object\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/createWithArray\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"createUsersWithArrayInput\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/createWithList\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"createUsersWithListInput\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/login\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Logs user into the system\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"loginUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"The user name for login\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"password\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"The password for login in clear text\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"password\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"headers\\\": {\\r\\n \\\"X-Rate-Limit\\\": {\\r\\n \\\"description\\\": \\\"calls per hour allowed by the user\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n },\\r\\n \\\"X-Expires-After\\\": {\\r\\n \\\"description\\\": \\\"date in UTC when token expires\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date-time\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username/password supplied\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/user/logout\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Logs out current logged in user session\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"logoutUser\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/{username}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Get user by user name\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"getUserByName\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"The name that needs to be fetched. Use user1 for testing. \\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"put\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Updated user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"updateUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"name that need to be updated\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid user supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Updated user object\\\",\\r\\n \\\"required\\\": true\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Delete user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"deleteUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"The name that needs to be deleted\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"See AsyncAPI example\\\",\\r\\n \\\"url\\\": \\\"https://mermade.github.io/shins/asyncapi.html\\\"\\r\\n },\\r\\n \\\"components\\\": {\\r\\n \\\"schemas\\\": {\\r\\n \\\"Order\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"petId\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"quantity\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"shipDate\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date-time\\\"\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"description\\\": \\\"Order Status\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"placed\\\",\\r\\n \\\"approved\\\",\\r\\n \\\"delivered\\\"\\r\\n ]\\r\\n },\\r\\n \\\"complete\\\": {\\r\\n \\\"type\\\": \\\"boolean\\\",\\r\\n \\\"default\\\": false\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"Category\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Category\\\"\\r\\n }\\r\\n },\\r\\n \\\"User\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"username\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"email\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"password\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"phone\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"userStatus\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\",\\r\\n \\\"description\\\": \\\"User Status\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"User\\\"\\r\\n }\\r\\n },\\r\\n \\\"Tag\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Tag\\\"\\r\\n }\\r\\n },\\r\\n \\\"Pet\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\",\\r\\n \\\"photoUrls\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"category\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Category\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"example\\\": \\\"doggie\\\"\\r\\n },\\r\\n \\\"photoUrls\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"photoUrl\\\",\\r\\n \\\"wrapped\\\": true\\r\\n },\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"tags\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"tag\\\",\\r\\n \\\"wrapped\\\": true\\r\\n },\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Tag\\\"\\r\\n }\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"description\\\": \\\"pet status in the store\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"available\\\",\\r\\n \\\"pending\\\",\\r\\n \\\"sold\\\"\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"ApiResponse\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"type\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"requestBodies\\\": {\\r\\n \\\"Pet\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Pet object that needs to be added to the store\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"UserArray\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"List of user object\\\",\\r\\n \\\"required\\\": true\\r\\n }\\r\\n },\\r\\n \\\"securitySchemes\\\": {\\r\\n \\\"petstore_auth\\\": {\\r\\n \\\"type\\\": \\\"oauth2\\\",\\r\\n \\\"flows\\\": {\\r\\n \\\"implicit\\\": {\\r\\n \\\"authorizationUrl\\\": \\\"http://petstore.swagger.io/oauth/dialog\\\",\\r\\n \\\"scopes\\\": {\\r\\n \\\"write:pets\\\": \\\"modify pets in your account\\\",\\r\\n \\\"read:pets\\\": \\\"read your pets\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"api_key\\\": {\\r\\n \\\"type\\\": \\\"apiKey\\\",\\r\\n \\\"name\\\": \\\"api_key\\\",\\r\\n \\\"in\\\": \\\"header\\\"\\r\\n }\\r\\n },\\r\\n \\\"links\\\": {},\\r\\n \\\"callbacks\\\": {}\\r\\n },\\r\\n \\\"security\\\": []\\r\\n}\",\r\n \"format\": \"openapi\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b654eedf-9056-4426-afa2-4c2dcafdc886"
+ "c1e5f380-b3a3-49a0-8551-3df5a4e41c20"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01&asyncId=5eab26c0a2ca601230023128&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01&asyncId=5f17190fa2ca600fe4c29689&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "41f7320d-4d55-4e5d-b08b-a0dbb407f1b3"
+ "53020e42-214d-41cc-8736-0187f4833881"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1194"
],
"x-ms-correlation-request-id": [
- "641e2c91-dc4f-4f68-8f10-8e107f1e83e9"
+ "5bb6bd89-d41a-42bd-b253-e8a6668269b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192801Z:641e2c91-dc4f-4f68-8f10-8e107f1e83e9"
+ "WESTUS:20200721T163423Z:5bb6bd89-d41a-42bd-b253-e8a6668269b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:00 GMT"
+ "Tue, 21 Jul 2020 16:34:22 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01&asyncId=5eab26c0a2ca601230023128&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjZjMGEyY2E2MDEyMzAwMjMxMjgmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01&asyncId=5f17190fa2ca600fe4c29689&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMSZhc3luY0lkPTVmMTcxOTBmYTJjYTYwMGZlNGMyOTY4OSZhc3luY0NvZGU9MjAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,34 +90,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACco=\""
+ "\"AAAAAAAAO+4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "29ac0b05-26af-4d4b-92e4-35d674718461"
+ "1fbde73e-94bc-409e-8cf6-4a92125eafa2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11986"
],
"x-ms-correlation-request-id": [
- "c2689ec6-f1d9-4548-9afb-001a4961d23a"
+ "9f4aef1e-5329-4cd4-858b-191269cca73e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192831Z:c2689ec6-f1d9-4548-9afb-001a4961d23a"
+ "WESTUS:20200721T163453Z:9f4aef1e-5329-4cd4-858b-191269cca73e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:30 GMT"
+ "Tue, 21 Jul 2020 16:34:53 GMT"
],
"Content-Length": [
- "1049"
+ "1047"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5833\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0a2bb00-5d9f-46e9-9fed-ebbad65f1b9a"
+ "39365b65-8bac-4007-9687-be964a566914"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,34 +156,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACco=\""
+ "\"AAAAAAAAO+4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ad20ea78-4e69-4ae8-af64-d916956105f8"
+ "f803200f-f367-4599-9ff1-d5056b7a990c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11985"
],
"x-ms-correlation-request-id": [
- "754b506d-71fa-4c26-b13f-4d49c3fd4aa7"
+ "635fe429-3df2-4312-a6a0-08ddf5f1af42"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192831Z:754b506d-71fa-4c26-b13f-4d49c3fd4aa7"
+ "WESTUS:20200721T163454Z:635fe429-3df2-4312-a6a0-08ddf5f1af42"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:30 GMT"
+ "Tue, 21 Jul 2020 16:34:53 GMT"
],
"Content-Length": [
- "1049"
+ "1047"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5833\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDkvc2NoZW1hcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e9d4c65-9588-4608-98c9-752af383b3e1"
+ "e1fc86ae-e458-41e5-988c-4651f4862679"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,28 +225,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98fac092-072e-47fe-b2f6-86fc1767c481"
+ "0b881b28-8079-4bae-b883-11cfaf0d102b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11984"
],
"x-ms-correlation-request-id": [
- "ddf1ac8a-8eef-49fd-8c41-be2a677e107f"
+ "8744a79d-ad6d-41a3-b7b6-c39db810e550"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192831Z:ddf1ac8a-8eef-49fd-8c41-be2a677e107f"
+ "WESTUS:20200721T163454Z:8744a79d-ad6d-41a3-b7b6-c39db810e550"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:31 GMT"
+ "Tue, 21 Jul 2020 16:34:54 GMT"
],
"Content-Length": [
- "10858"
+ "10857"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,17 +255,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833/schemas/5eab26c0a2ca601230023127\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5eab26c0a2ca601230023127\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\"\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"PetRequest-json\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"PetRequest-xml\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749/schemas/5f17190fa2ca600fe4c29688\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f17190fa2ca600fe4c29688\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\"\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"PetRequest-json\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"PetRequest-xml\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749%3Brev%3D1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDklM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e797aa10-54e8-4396-963f-741d96ee2c02"
+ "fdec3e3e-2dd0-41a6-a90f-32d6aa91d661"
],
"If-Match": [
"*"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,34 +294,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAChA=\""
+ "\"AAAAAAAAPDQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5c2ff12a-d820-4755-bb1c-53c96de54da7"
+ "a1c4c5de-3a68-46dd-876f-99dc6a6e8634"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1193"
],
"x-ms-correlation-request-id": [
- "e3eee686-f391-4bed-978a-0b546e035b22"
+ "4e97b409-a27b-4d70-a1b8-8e692e73aa97"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192832Z:e3eee686-f391-4bed-978a-0b546e035b22"
+ "WESTUS:20200721T163458Z:4e97b409-a27b-4d70-a1b8-8e692e73aa97"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:31 GMT"
+ "Tue, 21 Jul 2020 16:34:58 GMT"
],
"Content-Length": [
- "794"
+ "792"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5833\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94300004-717f-4ce9-ad92-5901e08dd80e"
+ "1a27449b-3ab0-4c80-97ef-06bb319b2f7a"
],
"If-Match": [
"*"
@@ -352,7 +352,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -366,25 +366,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e62333bc-31fb-457b-893e-a243d79cc225"
+ "0a4641a1-0463-492f-8aef-01f87e3f51ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14997"
],
"x-ms-correlation-request-id": [
- "ba614125-b3bc-4935-a776-17c71905eb2a"
+ "766b1016-8302-4aaa-912a-7f4255d4667a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192832Z:ba614125-b3bc-4935-a776-17c71905eb2a"
+ "WESTUS:20200721T163458Z:766b1016-8302-4aaa-912a-7f4255d4667a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:31 GMT"
+ "Tue, 21 Jul 2020 16:34:58 GMT"
],
"Expires": [
"-1"
@@ -399,7 +399,7 @@
],
"Names": {
"": [
- "ps5833"
+ "ps749"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json
index 2c01f94f99ef..7d5402b60462 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"openapi: 3.0.1\\r\\nservers:\\r\\n - url: 'https://developer.uspto.gov/ds-api'\\r\\ninfo:\\r\\n description: >-\\r\\n The Data Set API (DSAPI) allows the public users to discover and search\\r\\n USPTO exported data sets. This is a generic API that allows USPTO users to\\r\\n make any CSV based data files searchable through API. With the help of GET\\r\\n call, it returns the list of data fields that are searchable. With the help\\r\\n of POST call, data can be fetched based on the filters on the field names.\\r\\n Please note that POST call is used to search the actual data. The reason for\\r\\n the POST call is that it allows users to specify any complex search criteria\\r\\n without worry about the GET size limitations as well as encoding of the\\r\\n input parameters.\\r\\n version: 1.0.0\\r\\n title: USPTO Data Set API\\r\\n contact:\\r\\n name: Open Data Portal\\r\\n url: 'https://developer.uspto.gov'\\r\\n email: developer@uspto.gov\\r\\ntags:\\r\\n - name: metadata\\r\\n description: Find out about the data sets\\r\\n - name: search\\r\\n description: Search a data set\\r\\npaths:\\r\\n /:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n operationId: list-data-sets\\r\\n summary: List available data sets\\r\\n responses:\\r\\n '200':\\r\\n description: Returns a list of data sets\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: '#/components/schemas/dataSetList'\\r\\n example:\\r\\n {\\r\\n \\\"total\\\": 2,\\r\\n \\\"apis\\\": [\\r\\n {\\r\\n \\\"apiKey\\\": \\\"oa_citations\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/oa_citations/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json\\\"\\r\\n },\\r\\n {\\r\\n \\\"apiKey\\\": \\\"cancer_moonshot\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json\\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n /{dataset}/{version}/fields:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n summary: >-\\r\\n Provides the general information about the API and the list of fields\\r\\n that can be used to query the dataset.\\r\\n description: >-\\r\\n This GET API returns the list of all the searchable field names that are\\r\\n in the oa_citations. Please see the 'fields' attribute which returns an\\r\\n array of field names. Each field or a combination of fields can be\\r\\n searched using the syntax options shown below.\\r\\n operationId: list-searchable-fields\\r\\n parameters:\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset.'\\r\\n required: true\\r\\n example: \\\"oa_citations\\\"\\r\\n schema:\\r\\n type: string\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n example: \\\"v1\\\"\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: >-\\r\\n The dataset API for the given version is found and it is accessible\\r\\n to consume.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n '404':\\r\\n description: >-\\r\\n The combination of dataset name and version is not found in the\\r\\n system or it is not published yet to be consumed by public.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n /{dataset}/{version}/records:\\r\\n post:\\r\\n tags:\\r\\n - search\\r\\n summary: >-\\r\\n Provides search capability for the data set with the given search\\r\\n criteria.\\r\\n description: >-\\r\\n This API is based on Solr/Lucense Search. The data is indexed using\\r\\n SOLR. This GET API returns the list of all the searchable field names\\r\\n that are in the Solr Index. Please see the 'fields' attribute which\\r\\n returns an array of field names. Each field or a combination of fields\\r\\n can be searched using the Solr/Lucene Syntax. Please refer\\r\\n https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for\\r\\n the query syntax. List of field names that are searchable can be\\r\\n determined using above GET api.\\r\\n operationId: perform-search\\r\\n parameters:\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: v1\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset. In this case, the default value is oa_citations'\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: oa_citations\\r\\n responses:\\r\\n '200':\\r\\n description: successful operation\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n additionalProperties:\\r\\n type: object\\r\\n '404':\\r\\n description: No matching record found for the given criteria.\\r\\n requestBody:\\r\\n content:\\r\\n application/x-www-form-urlencoded:\\r\\n schema:\\r\\n type: object\\r\\n properties:\\r\\n criteria:\\r\\n description: >-\\r\\n Uses Lucene Query Syntax in the format of\\r\\n propertyName:value, propertyName:[num1 TO num2] and date\\r\\n range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the\\r\\n response please see the 'docs' element which has the list of\\r\\n record objects. Each record structure would consist of all\\r\\n the fields and their corresponding values.\\r\\n type: string\\r\\n default: '*:*'\\r\\n start:\\r\\n description: Starting record number. Default value is 0.\\r\\n type: integer\\r\\n default: 0\\r\\n rows:\\r\\n description: >-\\r\\n Specify number of rows to be returned. If you run the search\\r\\n with default values, in the response you will see 'numFound'\\r\\n attribute which will tell the number of records available in\\r\\n the dataset.\\r\\n type: integer\\r\\n default: 100\\r\\n required:\\r\\n - criteria\\r\\ncomponents:\\r\\n schemas:\\r\\n dataSetList:\\r\\n type: object\\r\\n properties:\\r\\n total:\\r\\n type: integer\\r\\n apis:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n properties:\\r\\n apiKey:\\r\\n type: string\\r\\n description: To be used as a dataset parameter value\\r\\n apiVersionNumber:\\r\\n type: string\\r\\n description: To be used as a version parameter value\\r\\n apiUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: \\\"The URL describing the dataset's fields\\\"\\r\\n apiDocumentationUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: A URL to the API console for each API\",\r\n \"format\": \"openapi\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "794a76b1-496e-4965-b294-c3bc35249f3a"
+ "cc62e96e-1af3-4027-9411-b24a99d4380c"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01&asyncId=5eab2b83a2ca60123002320e&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01&asyncId=5f171a3da2ca600fe4c296bf&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5a9b3bab-60ed-4ca3-85ad-e01a34bec02e"
+ "8c5a6762-9e8c-42bd-a3d3-34eddd487307"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "297b3d2f-9ef8-408b-8daf-cf8bac2c6191"
+ "56f03ad9-5b92-4a29-b9aa-81c3fe56b682"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194819Z:297b3d2f-9ef8-408b-8daf-cf8bac2c6191"
+ "WESTUS:20200721T163925Z:56f03ad9-5b92-4a29-b9aa-81c3fe56b682"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:48:19 GMT"
+ "Tue, 21 Jul 2020 16:39:25 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01&asyncId=5eab2b83a2ca60123002320e&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMmI4M2EyY2E2MDEyMzAwMjMyMGUmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01&asyncId=5f171a3da2ca600fe4c296bf&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWEzZGEyY2E2MDBmZTRjMjk2YmYmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +90,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEs=\""
+ "\"AAAAAAAAPJM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6af3d952-38af-429e-ba96-fb7645606c14"
+ "d29ce9e6-39a4-48c0-8537-ea338f21bab2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11995"
],
"x-ms-correlation-request-id": [
- "c1962e55-ed45-4f2c-b6a9-db3013dbe738"
+ "e8499c1c-a13d-46a0-9199-33fa3b7aff65"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194849Z:c1962e55-ed45-4f2c-b6a9-db3013dbe738"
+ "WESTUS:20200721T163955Z:e8499c1c-a13d-46a0-9199-33fa3b7aff65"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:48:49 GMT"
+ "Tue, 21 Jul 2020 16:39:55 GMT"
],
"Content-Length": [
"1381"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4146\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9664\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3d9f9c7-ea5a-413e-9599-d869a89c9ca9"
+ "da0cf8f6-3e46-4f87-ab59-5a5f81d98b45"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,31 +156,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEs=\""
+ "\"AAAAAAAAPJM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f0aa35a6-301d-4d5a-a617-21d9e29a44f8"
+ "f6985db1-fe1e-4c01-b5a1-2de3c211b599"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11994"
],
"x-ms-correlation-request-id": [
- "b616b299-33ca-4519-a1fa-3dc50de6e516"
+ "1ea94981-581d-49e2-a1a6-549cb678884d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194849Z:b616b299-33ca-4519-a1fa-3dc50de6e516"
+ "WESTUS:20200721T163955Z:1ea94981-581d-49e2-a1a6-549cb678884d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:48:49 GMT"
+ "Tue, 21 Jul 2020 16:39:55 GMT"
],
"Content-Length": [
"1381"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4146\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9664\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromUrl\",\r\n \"value\": \"https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml\",\r\n \"format\": \"openapi-link\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1f8676b-2d7a-49b5-8dd5-6c6633d54b5e"
+ "4e511614-1ae9-4b75-9d86-3d68b617575b"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,31 +228,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01&asyncId=5eab2ba2a2ca601230023213&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01&asyncId=5f171a5ca2ca600fe4c296c4&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1b4dff0-9eec-491c-8734-d44ef290f942"
+ "101085e0-39ba-4fbc-b861-30dbe5755f31"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-correlation-request-id": [
- "0180835f-6bc4-443c-a19c-4225c1c3dc08"
+ "9804b793-65a6-4b63-bf99-53cbfe53acdf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194850Z:0180835f-6bc4-443c-a19c-4225c1c3dc08"
+ "WESTUS:20200721T163956Z:9804b793-65a6-4b63-bf99-53cbfe53acdf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:48:50 GMT"
+ "Tue, 21 Jul 2020 16:39:55 GMT"
],
"Expires": [
"-1"
@@ -265,8 +265,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01&asyncId=5eab2ba2a2ca601230023213&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMSZhc3luY0lkPTVlYWIyYmEyYTJjYTYwMTIzMDAyMzIxMyZhc3luY0NvZGU9MjAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01&asyncId=5f171a5ca2ca600fe4c296c4&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWE1Y2EyY2E2MDBmZTRjMjk2YzQmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,7 +274,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,34 +285,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADFw=\""
+ "\"AAAAAAAAPKM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1a211025-a856-47db-94ad-53129970e885"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "41745eb7-31f1-46c1-abac-b659aab5ba0c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
"x-ms-correlation-request-id": [
- "a037d090-d16e-4c7f-b6a0-63e0b3ef2be6"
+ "b6777a45-49eb-47c1-93e6-6512590135f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194920Z:a037d090-d16e-4c7f-b6a0-63e0b3ef2be6"
+ "WESTUS:20200721T164026Z:b6777a45-49eb-47c1-93e6-6512590135f6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:49:19 GMT"
+ "Tue, 21 Jul 2020 16:40:25 GMT"
],
"Content-Length": [
- "757"
+ "759"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,17 +321,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps512\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65db4c06-863a-480e-a926-7ce72c347ac8"
+ "b77319ae-6354-4c86-b91f-6f789f4a17c0"
],
"Accept-Language": [
"en-US"
@@ -340,7 +340,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,34 +351,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADFw=\""
+ "\"AAAAAAAAPKM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eca8a573-aec5-48ad-a79b-3f1b10e8e158"
+ "a9199e89-228c-4315-9a01-5c299cc357b0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11992"
],
"x-ms-correlation-request-id": [
- "fb564e02-cc35-43bb-ad8d-808e3b4c38e8"
+ "f1fe5483-a34f-49c9-a153-e4bff7ad2ffe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194920Z:fb564e02-cc35-43bb-ad8d-808e3b4c38e8"
+ "WESTUS:20200721T164026Z:f1fe5483-a34f-49c9-a153-e4bff7ad2ffe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:49:20 GMT"
+ "Tue, 21 Jul 2020 16:40:25 GMT"
],
"Content-Length": [
- "757"
+ "759"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -387,17 +387,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps512\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26db13e4-5c4a-4cea-adc4-bf978683b9e4"
+ "6114cccf-bf3b-493a-a9f8-7cb92212f9cc"
],
"Accept-Language": [
"en-US"
@@ -406,7 +406,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,25 +420,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9639c30e-d45f-4310-9e53-b181e6165dce"
+ "7ae8aae5-ca1d-4614-90e8-d663500f61d3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11991"
],
"x-ms-correlation-request-id": [
- "c1b6ab64-ac38-4f8a-978b-b4e6b4b4736a"
+ "ffbf6284-183d-4814-b3b1-ae21628dbef1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194920Z:c1b6ab64-ac38-4f8a-978b-b4e6b4b4736a"
+ "WESTUS:20200721T164026Z:ffbf6284-183d-4814-b3b1-ae21628dbef1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:49:20 GMT"
+ "Tue, 21 Jul 2020 16:40:25 GMT"
],
"Content-Length": [
"2515"
@@ -450,17 +450,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146/schemas/5eab2b83a2ca60123002320d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5eab2b83a2ca60123002320d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"-dataset--version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664/schemas/5f171a3da2ca600fe4c296be\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f171a3da2ca600fe4c296be\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"-dataset--version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTIlM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756%3Brev%3D1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7092c415-6dd2-47a8-a57b-0da5041e03cb"
+ "f584f853-908c-4c73-84a1-5764fbe4fff5"
],
"If-Match": [
"*"
@@ -472,7 +472,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -489,34 +489,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADGs=\""
+ "\"AAAAAAAAPLE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5644397b-9d77-469b-b160-72ed598182ed"
+ "d9b07c4d-0120-49c4-8e7b-88cf07e0feeb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1194"
],
"x-ms-correlation-request-id": [
- "bf441aec-fcef-4ce6-9b34-269c150ad9e0"
+ "1aa254a0-14f9-491f-86c6-c665417da16b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194921Z:bf441aec-fcef-4ce6-9b34-269c150ad9e0"
+ "WESTUS:20200721T164027Z:1aa254a0-14f9-491f-86c6-c665417da16b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:49:20 GMT"
+ "Tue, 21 Jul 2020 16:40:26 GMT"
],
"Content-Length": [
- "791"
+ "793"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,17 +525,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps512\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f326c9e5-c7a1-4f95-980d-351843e1df3f"
+ "1d4cf6dc-30e6-4c21-8abb-7529f1296562"
],
"If-Match": [
"*"
@@ -547,7 +547,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -561,25 +561,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef27cb33-190c-4d0e-baab-0dddd7925e3a"
+ "de171412-3a2e-4212-87f8-e662e6882f17"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "3ea15224-d342-4268-a1f2-8e5a07eedea2"
+ "49aa8fe9-e9f3-426f-91f6-8a7a11628424"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194921Z:3ea15224-d342-4268-a1f2-8e5a07eedea2"
+ "WESTUS:20200721T164027Z:49aa8fe9-e9f3-426f-91f6-8a7a11628424"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:49:20 GMT"
+ "Tue, 21 Jul 2020 16:40:26 GMT"
],
"Expires": [
"-1"
@@ -592,13 +592,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25e09f03-f0f4-402a-b37e-42cab7ffcce3"
+ "c23d286b-b8bb-4d45-affa-46cbae938cef"
],
"If-Match": [
"*"
@@ -610,7 +610,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,25 +624,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2ba1c24e-9c88-4fd9-b8b8-7a2924b34a46"
+ "ac5b8273-8129-4154-ae4a-436d15f4fe71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "7937e82a-cca1-4d1c-a7d9-8b2d246d8023"
+ "713c7346-3782-4242-b94e-284206d06e51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194921Z:7937e82a-cca1-4d1c-a7d9-8b2d246d8023"
+ "WESTUS:20200721T164027Z:713c7346-3782-4242-b94e-284206d06e51"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:49:21 GMT"
+ "Tue, 21 Jul 2020 16:40:26 GMT"
],
"Expires": [
"-1"
@@ -657,8 +657,8 @@
],
"Names": {
"": [
- "ps4146",
- "ps512"
+ "ps9664",
+ "ps3756"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json
index 85b608ca553f..5b3c22ad930d 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f41574e-805d-41fd-8b7a-cb38feeae874"
+ "426eeabe-dc3a-4988-8a06-b4b53a07ceac"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01&asyncId=5eab2625a2ca601230023110&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01&asyncId=5f171873a2ca600fe4c29671&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "55b6dd07-bd54-43fc-bc32-85fe0595cd7f"
+ "71ddc02b-aafe-4db3-a083-64b4b1b951e5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +48,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "7d7d4991-f598-498b-831f-721de7a38608"
+ "24b23347-2114-4f5f-9ac0-76419972dc09"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192527Z:7d7d4991-f598-498b-831f-721de7a38608"
+ "WESTUS:20200721T163148Z:24b23347-2114-4f5f-9ac0-76419972dc09"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:25:27 GMT"
+ "Tue, 21 Jul 2020 16:31:48 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01&asyncId=5eab2625a2ca601230023110&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjYyNWEyY2E2MDEyMzAwMjMxMTAmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01&asyncId=5f171873a2ca600fe4c29671&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTg3M2EyY2E2MDBmZTRjMjk2NzEmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACQ0=\""
+ "\"AAAAAAAAOzY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "54da2259-3551-4f62-946e-05b413423404"
+ "f8a4f5a1-989d-4d8c-ac3d-a9bb0bd2130d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "0067843d-4b8a-46cc-8521-9caa9fc782f1"
+ "b57c903b-ef9a-47e2-8890-93ff59b78ec9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192557Z:0067843d-4b8a-46cc-8521-9caa9fc782f1"
+ "WESTUS:20200721T163218Z:b57c903b-ef9a-47e2-8890-93ff59b78ec9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:25:57 GMT"
+ "Tue, 21 Jul 2020 16:32:18 GMT"
],
"Content-Length": [
"884"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7776\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6896\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3e66071-ccfa-42e7-a018-22c12e0b1b7c"
+ "cf7faedb-6526-4479-b7af-ef621d80d50a"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +156,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACQ0=\""
+ "\"AAAAAAAAOzY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "47c26613-3be9-4f82-9086-0d1830502425"
+ "b68a5338-4d19-4a47-ab8b-33ff8a6b1ba8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "e406b9f0-c6e4-4e51-bed5-4b84aada35a9"
+ "f8b15c74-89f8-46e4-9398-e9c8a359c44f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192557Z:e406b9f0-c6e4-4e51-bed5-4b84aada35a9"
+ "WESTUS:20200721T163219Z:f8b15c74-89f8-46e4-9398-e9c8a359c44f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:25:57 GMT"
+ "Tue, 21 Jul 2020 16:32:18 GMT"
],
"Content-Length": [
"884"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7776\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6896\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromUrl\",\r\n \"value\": \"http://petstore.swagger.io/v2/swagger.json\",\r\n \"format\": \"swagger-link-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e97c06f-741a-4bae-9bf4-d9513899ff24"
+ "315f5ee5-407c-46d8-9fdf-ca6cb2eea9d6"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,13 +228,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01&asyncId=5eab2646a2ca601230023115&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01&asyncId=5f171893a2ca600fe4c29676&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b683fd7c-c164-4624-88de-47a4d070a8af"
+ "c0bfe05e-69f5-4216-b81a-bf3255f3ded5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ac104754-8fed-42c0-9b64-f7ebd23653f2"
+ "ab564b9d-425e-477d-a0ff-088089732b20"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192558Z:ac104754-8fed-42c0-9b64-f7ebd23653f2"
+ "WESTUS:20200721T163219Z:ab564b9d-425e-477d-a0ff-088089732b20"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:25:58 GMT"
+ "Tue, 21 Jul 2020 16:32:19 GMT"
],
"Expires": [
"-1"
@@ -265,8 +265,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01&asyncId=5eab2646a2ca601230023115&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjY0NmEyY2E2MDEyMzAwMjMxMTUmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01&asyncId=5f171893a2ca600fe4c29676&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTg5M2EyY2E2MDBmZTRjMjk2NzYmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,7 +274,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,31 +285,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACSo=\""
+ "\"AAAAAAAAO1Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef3c164f-90a1-4571-abb0-693067041cb9"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "42eea5e4-5e25-49d9-9535-0f583c5e9e8f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"x-ms-correlation-request-id": [
- "892489d1-9a63-474a-a2e8-1e70f3c16da8"
+ "4f20358f-e23a-43bd-b9bb-2a3bae014fb5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192628Z:892489d1-9a63-474a-a2e8-1e70f3c16da8"
+ "WESTUS:20200721T163250Z:4f20358f-e23a-43bd-b9bb-2a3bae014fb5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:26:28 GMT"
+ "Tue, 21 Jul 2020 16:32:49 GMT"
],
"Content-Length": [
"1046"
@@ -321,17 +321,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8296\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f3daca8-167c-4795-996d-8b1a74253a0d"
+ "b0318b1d-9fbb-41bd-bc33-d5b1061dbd69"
],
"Accept-Language": [
"en-US"
@@ -340,7 +340,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,13 +351,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACSo=\""
+ "\"AAAAAAAAO1Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "be2d75aa-6b91-491e-99e4-4f630111629d"
+ "61d0b2d1-ff51-4462-b6aa-c687e4d04279"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -366,16 +366,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "5d00f584-c2bd-4176-959a-7ff76233cc94"
+ "11937321-22d0-4a0c-a8dd-af3c75b1848e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192629Z:5d00f584-c2bd-4176-959a-7ff76233cc94"
+ "WESTUS:20200721T163250Z:11937321-22d0-4a0c-a8dd-af3c75b1848e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:26:28 GMT"
+ "Tue, 21 Jul 2020 16:32:49 GMT"
],
"Content-Length": [
"1046"
@@ -387,17 +387,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8296\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643%3Brev%3D1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4f8d388-fa4f-474b-a024-97b9eef8f928"
+ "f532ae79-12bc-41d2-9880-5acc440a1856"
],
"If-Match": [
"*"
@@ -409,7 +409,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,13 +426,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACXM=\""
+ "\"AAAAAAAAO5g=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6740b0f2-3435-4bb8-9ddd-6409b88da306"
+ "5be8bbc3-effa-4ace-994c-c8deb5917d26"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,16 +441,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "000f8e81-f096-45ed-8df7-bfd621164ba8"
+ "c3d244f2-aad1-4b9f-b1aa-e826932526f4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192637Z:000f8e81-f096-45ed-8df7-bfd621164ba8"
+ "WESTUS:20200721T163258Z:c3d244f2-aad1-4b9f-b1aa-e826932526f4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:26:37 GMT"
+ "Tue, 21 Jul 2020 16:32:57 GMT"
],
"Content-Length": [
"815"
@@ -462,17 +462,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8296\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf701e3b-8b4b-401b-8fae-f2621f49c30d"
+ "25fe9e6c-549b-4ff5-90ce-8460873a4bbc"
],
"If-Match": [
"*"
@@ -484,7 +484,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,7 +498,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e0d29dea-1277-4b0b-a963-9844696289fe"
+ "d86a5658-fbdc-4216-b629-a99902296ed9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,16 +507,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "4fef1d68-195b-4f4f-8608-fb79e45a3564"
+ "c1de3bae-72f7-46e9-8b81-b066498e82db"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192640Z:4fef1d68-195b-4f4f-8608-fb79e45a3564"
+ "WESTUS:20200721T163301Z:c1de3bae-72f7-46e9-8b81-b066498e82db"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:26:39 GMT"
+ "Tue, 21 Jul 2020 16:33:00 GMT"
],
"Expires": [
"-1"
@@ -529,13 +529,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cfd9cd54-b36e-47b6-b584-8f661e2c2934"
+ "432798a7-bf6d-46dc-9392-01dc3945bad6"
],
"If-Match": [
"*"
@@ -547,7 +547,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -561,7 +561,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "14eb0a34-1fee-46d6-be0b-f597307f9ba1"
+ "cbfcc449-f2be-4c09-81df-be5d0209a18c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -570,16 +570,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "43dfcbca-21f2-40c5-b876-5631a8edf263"
+ "f7b9c764-11ae-48a8-a689-cd4557b92c08"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192640Z:43dfcbca-21f2-40c5-b876-5631a8edf263"
+ "WESTUS:20200721T163302Z:f7b9c764-11ae-48a8-a689-cd4557b92c08"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:26:39 GMT"
+ "Tue, 21 Jul 2020 16:33:01 GMT"
],
"Expires": [
"-1"
@@ -594,8 +594,8 @@
],
"Names": {
"": [
- "ps7776",
- "ps8296"
+ "ps6896",
+ "ps8643"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json
index d78cf4d58931..f4764a77b998 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"wadlapi\",\r\n \"value\": \"\\r\\n\\r\\n Yahoo News Search API\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wadl-xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c9e1366-eb6d-4d27-a30f-cc2ac4c73ea6"
+ "ccebfa22-9a14-4543-9c19-5b824ba91c6c"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01&asyncId=5eab2950a2ca6012300231d8&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01&asyncId=5f171bdaa2ca600fe4c2974c&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e363e3ec-c4d0-46af-8553-60a255234871"
+ "aa5352cd-4162-41e9-8fcd-83a4a2b9b16b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "0a4e33bc-8d11-4511-a520-b7cc69cd3146"
+ "b17c9e7c-163e-4317-9c89-28e406e54f18"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193856Z:0a4e33bc-8d11-4511-a520-b7cc69cd3146"
+ "WESTUS:20200721T164618Z:b17c9e7c-163e-4317-9c89-28e406e54f18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:56 GMT"
+ "Tue, 21 Jul 2020 16:46:18 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01&asyncId=5eab2950a2ca6012300231d8&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjk1MGEyY2E2MDEyMzAwMjMxZDgmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01&asyncId=5f171bdaa2ca600fe4c2974c&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWJkYWEyY2E2MDBmZTRjMjk3NGMmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +90,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC/Q=\""
+ "\"AAAAAAAAPkA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b290d1f4-73f1-4a35-8dbb-b6f01ee9ff17"
+ "3e281092-7a61-44f5-9d7c-b9b14df0bb03"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11999"
],
"x-ms-correlation-request-id": [
- "16d0d2dd-32e0-4187-98f7-ce2fb3748142"
+ "21fc4f69-acb8-44f2-8851-5402d9ee65f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193926Z:16d0d2dd-32e0-4187-98f7-ce2fb3748142"
+ "WESTUS:20200721T164653Z:21fc4f69-acb8-44f2-8851-5402d9ee65f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:26 GMT"
+ "Tue, 21 Jul 2020 16:46:53 GMT"
],
"Content-Length": [
"792"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5602\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6038\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9fa8032-257c-45d0-af04-de070b32696f"
+ "56d7a686-8d99-4bef-938f-71bcb4c63830"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,31 +156,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC/Q=\""
+ "\"AAAAAAAAPkA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "972d1241-db82-4819-8c59-7ec7e8466630"
+ "351e0448-285e-41c8-8940-9e766c92aef4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11998"
],
"x-ms-correlation-request-id": [
- "b66486ce-b113-4948-838b-137db502e9ea"
+ "b900da6c-4492-473f-bebf-59d20a7bc68e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193927Z:b66486ce-b113-4948-838b-137db502e9ea"
+ "WESTUS:20200721T164653Z:b900da6c-4492-473f-bebf-59d20a7bc68e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:26 GMT"
+ "Tue, 21 Jul 2020 16:46:53 GMT"
],
"Content-Length": [
"792"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5602\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6038\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dcad0bfa-98f3-42b2-ad5b-1c4f1d6090a7"
+ "738a5032-6c07-4799-9adb-73116ae64afa"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,25 +225,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e542fe2d-f072-4572-a898-e70abf31a60d"
+ "f4886eb0-752b-4104-8f88-84a6df8fdbad"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11997"
],
"x-ms-correlation-request-id": [
- "9968a68b-f9de-4120-a41f-a85858dfa06f"
+ "e3ca5c95-9f16-4627-bb90-50651b0ffe5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193927Z:9968a68b-f9de-4120-a41f-a85858dfa06f"
+ "WESTUS:20200721T164654Z:e3ca5c95-9f16-4627-bb90-50651b0ffe5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:26 GMT"
+ "Tue, 21 Jul 2020 16:46:53 GMT"
],
"Content-Length": [
"2909"
@@ -255,17 +255,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602/schemas/5eab2950a2ca6012300231d7\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5eab2950a2ca6012300231d7\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038/schemas/5f171bdaa2ca600fe4c2974b\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f171bdaa2ca600fe4c2974b\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "944ca1a4-868e-4903-8aa5-350c7705e939"
+ "e4441cbb-8727-48f4-a0c5-90883c02b4d7"
],
"If-Match": [
"*"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,25 +291,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b148b38-5bf8-4342-b8dc-d4afb46a44af"
+ "bb0fa083-5690-4b9b-927d-ed424ef6b799"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "1cf83514-9cb2-4724-9106-a15c6150f952"
+ "94f38db5-98cf-4ebc-9c7a-8abc8b462bc3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193927Z:1cf83514-9cb2-4724-9106-a15c6150f952"
+ "WESTUS:20200721T164654Z:94f38db5-98cf-4ebc-9c7a-8abc8b462bc3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:27 GMT"
+ "Tue, 21 Jul 2020 16:46:53 GMT"
],
"Expires": [
"-1"
@@ -324,7 +324,7 @@
],
"Names": {
"": [
- "ps5602"
+ "ps6038"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json
index 5559ee8d3cf8..00f4f64c894e 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromFile\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e133410f-0ce3-4d03-b881-0603c2459443"
+ "0465e8da-afe1-45e2-ad57-e6d96d480467"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01&asyncId=5eab286ba2ca6012300231a8&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01&asyncId=5f171aefa2ca600fe4c2971c&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a106d51-f765-4eb2-b341-10d626c887c8"
+ "21042a75-4ac6-4631-919e-868f3d1743d0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +48,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "2500cf7d-98ab-4047-a484-a4a49854ff5e"
+ "c9a9d4ba-3e14-487f-a189-69308ea2952f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193507Z:2500cf7d-98ab-4047-a484-a4a49854ff5e"
+ "WESTUS:20200721T164223Z:c9a9d4ba-3e14-487f-a189-69308ea2952f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:07 GMT"
+ "Tue, 21 Jul 2020 16:42:23 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01&asyncId=5eab286ba2ca6012300231a8&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjg2YmEyY2E2MDEyMzAwMjMxYTgmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01&asyncId=5f171aefa2ca600fe4c2971c&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWFlZmEyY2E2MDBmZTRjMjk3MWMmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACzA=\""
+ "\"AAAAAAAAPXY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8cbc0b80-3ab5-4d2d-9577-ad4b7b74b93b"
+ "53dfcb28-2798-42b5-a781-ed61e829c608"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f69cbea0-8536-4465-b86e-d8a2403e7bca"
+ "e1e33228-2b3b-4389-9cea-f248af88ec1f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193537Z:f69cbea0-8536-4465-b86e-d8a2403e7bca"
+ "WESTUS:20200721T164253Z:e1e33228-2b3b-4389-9cea-f248af88ec1f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:37 GMT"
+ "Tue, 21 Jul 2020 16:42:53 GMT"
],
"Content-Length": [
"786"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9283\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3289\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12547c6e-6148-4c5e-b367-565a775f855d"
+ "b570726d-309f-429c-ba39-beb0936dc436"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +156,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACzA=\""
+ "\"AAAAAAAAPXY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0b16970d-8c54-4cbf-aec5-d009d63bfb1c"
+ "a96c0086-a488-4420-b13e-f2c49143c673"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "af9197ca-ac46-4cd3-84e9-709ad7c225e5"
+ "0ad58c13-e954-43b4-89a9-f292338ec1e2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193538Z:af9197ca-ac46-4cd3-84e9-709ad7c225e5"
+ "WESTUS:20200721T164254Z:0ad58c13-e954-43b4-89a9-f292338ec1e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:37 GMT"
+ "Tue, 21 Jul 2020 16:42:53 GMT"
],
"Content-Length": [
"786"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9283\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3289\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromUrl\",\r\n \"value\": \"http://fazioapisoap.azurewebsites.net/fazioService.svc?singleWSDL\",\r\n \"format\": \"wsdl-link\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"OrdersAPI\",\r\n \"wsdlEndpointName\": \"basic\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e74e6234-d634-44e0-86a1-b758fb6eb1b6"
+ "158bef2b-202f-4c5a-90a2-9e3f4fe9d883"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,13 +228,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01&asyncId=5eab288aa2ca6012300231af&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01&asyncId=5f171b0ea2ca600fe4c29723&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4055bf21-5222-4972-a435-a9e05ce1f68d"
+ "02d1fbf6-3f21-47cb-b9db-869b4062a079"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "10e28de4-6dfb-412a-b58d-1f88ce828220"
+ "038bec04-3c8f-4eed-8226-673a868fe4fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193538Z:10e28de4-6dfb-412a-b58d-1f88ce828220"
+ "WESTUS:20200721T164254Z:038bec04-3c8f-4eed-8226-673a868fe4fe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:37 GMT"
+ "Tue, 21 Jul 2020 16:42:53 GMT"
],
"Expires": [
"-1"
@@ -265,8 +265,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01&asyncId=5eab288aa2ca6012300231af&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjg4YWEyY2E2MDEyMzAwMjMxYWYmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01&asyncId=5f171b0ea2ca600fe4c29723&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWIwZWEyY2E2MDBmZTRjMjk3MjMmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -274,7 +274,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,13 +285,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACz4=\""
+ "\"AAAAAAAAPYU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e9274dc-dfb9-49af-98d9-f57b7e8c6ba1"
+ "4918ba86-403a-47f9-87fd-e22770d79105"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -300,16 +300,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "6e84a4ac-e2f2-4d2e-ac6c-27b51a380655"
+ "b4154f6f-7a2f-4eee-ab4c-dab9fe37f0e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193608Z:6e84a4ac-e2f2-4d2e-ac6c-27b51a380655"
+ "WESTUS:20200721T164324Z:b4154f6f-7a2f-4eee-ab4c-dab9fe37f0e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:08 GMT"
+ "Tue, 21 Jul 2020 16:43:24 GMT"
],
"Content-Length": [
"798"
@@ -321,17 +321,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3169\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ef8519e-dfbd-493f-9643-68c4361b2671"
+ "4520ed0e-839e-4c41-9c16-54a0198cc153"
],
"Accept-Language": [
"en-US"
@@ -340,7 +340,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,13 +351,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACz4=\""
+ "\"AAAAAAAAPYU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5affc9b1-38ca-4881-8a32-3c8a43e167fd"
+ "89a2a841-3f4d-4dad-81d3-9dead509b96e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -366,16 +366,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "863a359f-4eeb-40f3-bc49-cdae783e743a"
+ "bf5173b0-516f-49bc-bedf-1a402e69ed11"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193609Z:863a359f-4eeb-40f3-bc49-cdae783e743a"
+ "WESTUS:20200721T164324Z:bf5173b0-516f-49bc-bedf-1a402e69ed11"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:08 GMT"
+ "Tue, 21 Jul 2020 16:43:24 GMT"
],
"Content-Length": [
"798"
@@ -387,17 +387,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3169\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21d0804c-9b0f-473d-ae71-9da129f9b466"
+ "3cb8fb88-b762-4c51-86e5-05b295cfcbea"
],
"Accept-Language": [
"en-US"
@@ -406,7 +406,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,7 +420,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8dd8cd7-e3d4-41f2-a59b-d42d623887c4"
+ "9bb85db6-7124-4b63-8fc3-5d2b72bd76f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -429,16 +429,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "d6ab9e37-5a17-40c2-a861-8a88f465933e"
+ "87a92b14-d4e9-4962-95e6-1f8535b18cc0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193609Z:d6ab9e37-5a17-40c2-a861-8a88f465933e"
+ "WESTUS:20200721T164325Z:87a92b14-d4e9-4962-95e6-1f8535b18cc0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:08 GMT"
+ "Tue, 21 Jul 2020 16:43:24 GMT"
],
"Content-Length": [
"15328"
@@ -450,17 +450,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/00aa128f-b4bc-4bb9-8b22-b227a40b0d9d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"00aa128f-b4bc-4bb9-8b22-b227a40b0d9d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/65c3696e-93c3-45e6-9252-37c757961aa4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"65c3696e-93c3-45e6-9252-37c757961aa4\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/94a0deb1-4978-4ad6-97d0-451830a0c7ea\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"94a0deb1-4978-4ad6-97d0-451830a0c7ea\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/d766f6b3-f328-4cac-b426-63fdbee516dc\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d766f6b3-f328-4cac-b426-63fdbee516dc\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/2504db61-d786-4470-b874-5fb9e6e90d4f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2504db61-d786-4470-b874-5fb9e6e90d4f\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/37ccf3c2-b9b1-418a-b021-d99e7f480c88\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"37ccf3c2-b9b1-418a-b021-d99e7f480c88\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/8a5e1516-1dda-4a61-94ea-c68adaeff046\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"8a5e1516-1dda-4a61-94ea-c68adaeff046\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/a237d6a6-54a5-40d5-b2f3-a0f83ac0bcc4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"a237d6a6-54a5-40d5-b2f3-a0f83ac0bcc4\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305%3Brev%3D1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimSoap\",\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4918481c-e3f4-4258-b8c8-fefd4e372312"
+ "bf0c15eb-507f-4df0-ba67-563d6f37dd09"
],
"If-Match": [
"*"
@@ -472,7 +472,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -489,13 +489,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC1Y=\""
+ "\"AAAAAAAAPZw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "90bf7218-4e89-492d-b810-1801c692bd6d"
+ "1d9a1a5d-d03d-4b26-821a-bda4aea475db"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +504,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "ecf31d84-5f27-4b5a-abcc-a8fef67fa548"
+ "69a68ce0-32cd-448c-98d0-a45a05b9ea5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193609Z:ecf31d84-5f27-4b5a-abcc-a8fef67fa548"
+ "WESTUS:20200721T164325Z:69a68ce0-32cd-448c-98d0-a45a05b9ea5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:09 GMT"
+ "Tue, 21 Jul 2020 16:43:25 GMT"
],
"Content-Length": [
"835"
@@ -525,17 +525,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3169\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a800d71-aad4-4849-b355-79b2243ee291"
+ "7a391b7e-49bb-4611-9115-f1373e94b7bb"
],
"If-Match": [
"*"
@@ -547,7 +547,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -561,7 +561,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "85f88534-a62a-4a11-b453-bf2d7608a598"
+ "a996e49c-30b8-443b-9fdb-c1a7bf66c7ff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -570,16 +570,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "f694904b-7e85-4af9-a1d0-ef276909b111"
+ "0a6e281d-8b22-47b0-946c-577f41a58d55"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193609Z:f694904b-7e85-4af9-a1d0-ef276909b111"
+ "WESTUS:20200721T164325Z:0a6e281d-8b22-47b0-946c-577f41a58d55"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:09 GMT"
+ "Tue, 21 Jul 2020 16:43:25 GMT"
],
"Expires": [
"-1"
@@ -592,13 +592,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "062b061e-38c3-410c-bc6a-cab9599b9215"
+ "d2a43915-e050-4b83-87c7-e537f9ff8efb"
],
"If-Match": [
"*"
@@ -610,7 +610,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,7 +624,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "672edd44-dcd1-4ca5-b8d9-4af7d896193b"
+ "87520aef-00e6-444b-8206-99e675c592c7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +633,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "87d38c30-358b-44a7-af40-225d345c3470"
+ "b6d148bf-f2d3-4eb3-b5b2-658fc73705ca"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193609Z:87d38c30-358b-44a7-af40-225d345c3470"
+ "WESTUS:20200721T164325Z:b6d148bf-f2d3-4eb3-b5b2-658fc73705ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:09 GMT"
+ "Tue, 21 Jul 2020 16:43:25 GMT"
],
"Expires": [
"-1"
@@ -657,8 +657,8 @@
],
"Names": {
"": [
- "ps9283",
- "ps3169"
+ "ps3289",
+ "ps2305"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json
index b387584effd8..41d0dc5f8bc2 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e18e8792-0536-45cc-9716-f0a1cfa6bc1d"
+ "df952cc7-9efd-4bfb-8a5f-9e5605f57c61"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01&asyncId=5eab2674a2ca60123002311d&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01&asyncId=5f1718c1a2ca600fe4c2967e&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "74915dcf-e4c0-4463-915f-ef63ebe39e2d"
+ "cbc0e0e0-e61d-4eff-8bed-0d0d476a0d86"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +48,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e5b8acb5-8193-424f-94b0-45ca2861eaaa"
+ "994c07e8-5dc6-4386-9e3e-c9b1ab5ac641"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192644Z:e5b8acb5-8193-424f-94b0-45ca2861eaaa"
+ "WESTUS:20200721T163305Z:994c07e8-5dc6-4386-9e3e-c9b1ab5ac641"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:26:43 GMT"
+ "Tue, 21 Jul 2020 16:33:05 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01&asyncId=5eab2674a2ca60123002311d&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjY3NGEyY2E2MDEyMzAwMjMxMWQmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01&asyncId=5f1718c1a2ca600fe4c2967e&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MThjMWEyY2E2MDBmZTRjMjk2N2UmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACXs=\""
+ "\"AAAAAAAAO6A=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4fd29160-1b9b-49e1-a12d-218fa6600a72"
+ "2547fd83-75ec-4bfe-80e0-e80a6d756891"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "1b3a4fc9-c7c7-44fa-93f7-ce4fd13feb88"
+ "d7574d4b-e272-43e9-bf13-49e4c77575ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192714Z:1b3a4fc9-c7c7-44fa-93f7-ce4fd13feb88"
+ "WESTUS:20200721T163335Z:d7574d4b-e272-43e9-bf13-49e4c77575ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:14 GMT"
+ "Tue, 21 Jul 2020 16:33:35 GMT"
],
"Content-Length": [
"884"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70ee13b8-e19e-4e15-be96-0d160f4fb440"
+ "6ab1fc42-2bf4-4473-b369-fdc16b650b7e"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +156,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACXs=\""
+ "\"AAAAAAAAO6A=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e589fddc-0304-4c92-af2c-e8f25f842626"
+ "ca2ca693-abdc-4d8f-bda1-7c085ada6c9b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "88d61415-974d-48e6-8ec1-746680ad0730"
+ "a8ebee46-f7dc-4cd0-ac86-590024d37890"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192714Z:88d61415-974d-48e6-8ec1-746680ad0730"
+ "WESTUS:20200721T163335Z:a8ebee46-f7dc-4cd0-ac86-590024d37890"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:14 GMT"
+ "Tue, 21 Jul 2020 16:33:35 GMT"
],
"Content-Length": [
"884"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e535b2db-2cdb-474d-8cb6-b5eb3310322d"
+ "efca2d65-a2bb-4970-b592-d2bcca219d63"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -222,13 +222,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACXs=\""
+ "\"AAAAAAAAO6A=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5cfcab9e-441b-4ca0-9de8-86ac22f9712d"
+ "1af4ab5c-5a06-495b-9301-72c50ea6cb68"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +237,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2c0b1915-0dec-4a3d-9912-1d47e2f97910"
+ "011ec954-ff58-4c50-a0b1-1bcc7b7d2adc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192717Z:2c0b1915-0dec-4a3d-9912-1d47e2f97910"
+ "WESTUS:20200721T163338Z:011ec954-ff58-4c50-a0b1-1bcc7b7d2adc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:17 GMT"
+ "Tue, 21 Jul 2020 16:33:38 GMT"
],
"Content-Length": [
"884"
@@ -258,7 +258,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -268,7 +268,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc64386c-e81e-4c39-99c1-beaf2d594a54"
+ "71937afc-bed4-4da5-bfd1-b359b1497d74"
],
"Accept-Language": [
"en-US"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e0b3ad3-70e4-4b31-9e0f-8849597a4b08"
+ "3918d3ad-459f-487f-8332-71822bcd43e9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -300,19 +300,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "31fa6a2b-2c52-4ee1-a0e7-e1d62994efcc"
+ "f9d9ff61-bcfa-47c8-b101-377b62349f97"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192714Z:31fa6a2b-2c52-4ee1-a0e7-e1d62994efcc"
+ "WESTUS:20200721T163336Z:f9d9ff61-bcfa-47c8-b101-377b62349f97"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:14 GMT"
+ "Tue, 21 Jul 2020 16:33:35 GMT"
],
"Content-Length": [
- "1285"
+ "1287"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,17 +321,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3473?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczM0NzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczY2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd85e0c0-6607-4228-bb8a-7d059d1160f3"
+ "cfcf6efc-93f2-4145-8969-df1b60268afd"
],
"Accept-Language": [
"en-US"
@@ -340,7 +340,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,13 +351,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACXs=\""
+ "\"AAAAAAAAO6A=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bf6a56a7-fe8a-4161-8c59-eae1d12b5297"
+ "6d177627-a17b-4c09-b57b-e8e4b800bdbc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -366,16 +366,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "08e06c9e-bc85-4f7d-b85b-62744e745bd0"
+ "1687c205-4ef7-4342-8a76-31dfc51bfc5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192715Z:08e06c9e-bc85-4f7d-b85b-62744e745bd0"
+ "WESTUS:20200721T163336Z:1687c205-4ef7-4342-8a76-31dfc51bfc5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:15 GMT"
+ "Tue, 21 Jul 2020 16:33:35 GMT"
],
"Content-Length": [
"758"
@@ -387,7 +387,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -397,7 +397,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e01a305d-47c2-4a09-89aa-714e62583049"
+ "ce817833-3db4-4e54-bf97-ed1f2a791250"
],
"Accept-Language": [
"en-US"
@@ -406,7 +406,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,7 +420,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f654bc12-80e2-4b49-9273-24c90fb72f27"
+ "135c707c-3ed5-4466-95df-ffbb0873344c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -429,16 +429,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "c233b991-aae6-49d6-8747-59e1a89777c7"
+ "f3a74a93-2ea0-4f4d-8bcb-9017d628a0b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192716Z:c233b991-aae6-49d6-8747-59e1a89777c7"
+ "WESTUS:20200721T163337Z:f3a74a93-2ea0-4f4d-8bcb-9017d628a0b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:16 GMT"
+ "Tue, 21 Jul 2020 16:33:36 GMT"
],
"Content-Length": [
"1610"
@@ -450,17 +450,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa1d6359-5d1c-4de1-a9c9-f7c276830e78"
+ "be10d4e7-277b-4fdb-97dd-3beebe099627"
],
"Accept-Language": [
"en-US"
@@ -469,7 +469,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -483,7 +483,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "11d558b3-b69c-42c3-870b-fa4e88906fa7"
+ "58ca16ea-e511-422a-8c31-c49d6457c18a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -492,19 +492,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "da245bf0-b42f-4cd0-8c14-4ea9edb0c009"
+ "2c77f5bf-3758-479a-b271-f6194dd474e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192717Z:da245bf0-b42f-4cd0-8c14-4ea9edb0c009"
+ "WESTUS:20200721T163338Z:2c77f5bf-3758-479a-b271-f6194dd474e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:17 GMT"
+ "Tue, 21 Jul 2020 16:33:37 GMT"
],
"Content-Length": [
- "18942"
+ "19177"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -513,17 +513,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps6116\",\r\n \"sourceApiId\": \"/apis/ps3473;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps8005\",\r\n \"sourceApiId\": \"/apis/ps6621;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b0b168a-e5a3-4346-95ab-821a06559d62"
+ "ed70b804-b411-478a-ba10-4ea585ff9d30"
],
"Accept-Language": [
"en-US"
@@ -532,7 +532,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -549,13 +549,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACZ0=\""
+ "\"AAAAAAAAO8I=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "770b73f6-3fc2-409f-90b2-863ee1d99ad1"
+ "ba86405a-6cd2-4381-8de1-ca34b8258c97"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -564,16 +564,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "d63eea0d-4919-46e3-8947-3db2095b6a2d"
+ "190123e4-ddde-4883-86e4-1183e3f30c9c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192720Z:d63eea0d-4919-46e3-8947-3db2095b6a2d"
+ "WESTUS:20200721T163342Z:190123e4-ddde-4883-86e4-1183e3f30c9c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:20 GMT"
+ "Tue, 21 Jul 2020 16:33:41 GMT"
],
"Content-Length": [
"913"
@@ -585,12 +585,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps6116\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps8005\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,7 +598,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,31 +609,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACZ0=\""
+ "\"AAAAAAAAO8I=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2bfb8e93-7880-4fd5-8e0f-7865d3546ae1"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "77577471-71a8-4968-8efa-254aec4190e9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
"x-ms-correlation-request-id": [
- "4f2c0e6e-715b-473e-a398-b632e6455ff9"
+ "4a08e18e-b3e0-4bbe-92dc-c8e926074bed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192751Z:4f2c0e6e-715b-473e-a398-b632e6455ff9"
+ "WESTUS:20200721T163412Z:4a08e18e-b3e0-4bbe-92dc-c8e926074bed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:50 GMT"
+ "Tue, 21 Jul 2020 16:34:11 GMT"
],
"Content-Length": [
"913"
@@ -645,17 +645,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps6116\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps8005\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de96455e-2933-47e3-8934-d89c4d728152"
+ "05b741c0-f1af-4615-9f40-92761ea8f6dc"
],
"Accept-Language": [
"en-US"
@@ -664,7 +664,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -675,13 +675,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACZ0=\""
+ "\"AAAAAAAAO8I=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d13b3cc5-a214-4248-ac3e-c3339d18cb60"
+ "f958b774-1e66-4ec5-b5b7-996e9fa144da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -690,16 +690,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "14a875ec-e76f-4e7e-9d5e-4a5d373ba7db"
+ "5aa125d1-552e-4f21-815a-a7bb9e4e981d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192751Z:14a875ec-e76f-4e7e-9d5e-4a5d373ba7db"
+ "WESTUS:20200721T163413Z:5aa125d1-552e-4f21-815a-a7bb9e4e981d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:51 GMT"
+ "Tue, 21 Jul 2020 16:34:12 GMT"
],
"Content-Length": [
"913"
@@ -711,17 +711,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps6116\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps8005\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2/operations?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f63fba3a-8976-4cec-afad-6dc1f868129e"
+ "95e0025d-7f7e-46fe-a479-4fd020acfebb"
],
"Accept-Language": [
"en-US"
@@ -730,7 +730,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -744,7 +744,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "54b0ccf2-da3a-4bbb-b8e2-d59fc7c9b339"
+ "36e63614-e0a2-4677-85c7-994a9d621b34"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -753,16 +753,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "f7519cec-29ba-4744-b8ed-453b41a6cbba"
+ "cfe13fe4-599d-4f75-9c0d-bcca84602086"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192751Z:f7519cec-29ba-4744-b8ed-453b41a6cbba"
+ "WESTUS:20200721T163412Z:cfe13fe4-599d-4f75-9c0d-bcca84602086"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:50 GMT"
+ "Tue, 21 Jul 2020 16:34:12 GMT"
],
"Content-Length": [
"16923"
@@ -774,17 +774,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/revisions?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/revisions?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12c2ed88-6177-4e9d-b1b4-f764474287b1"
+ "30d4ddac-10c9-4ea3-b14d-a6de613b502e"
],
"Accept-Language": [
"en-US"
@@ -793,7 +793,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -807,7 +807,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "399b9b12-476f-46c9-9f3a-f90a88aa4b1a"
+ "16e31dc1-8c46-4c5f-85dd-c36862e17e45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -816,19 +816,19 @@
"11990"
],
"x-ms-correlation-request-id": [
- "60779cde-c85a-4ed6-9751-c20da4425f91"
+ "53fae145-9499-460a-8bb1-ac51aa5a2e12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192752Z:60779cde-c85a-4ed6-9751-c20da4425f91"
+ "WESTUS:20200721T163413Z:53fae145-9499-460a-8bb1-ac51aa5a2e12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:51 GMT"
+ "Tue, 21 Jul 2020 16:34:12 GMT"
],
"Content-Length": [
- "597"
+ "598"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -837,17 +837,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps3473;rev=2/revisions/ps3473;rev=2\",\r\n \"apiId\": \"/apis/ps3473;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-04-30T19:27:19.303Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:20.49Z\",\r\n \"description\": \"ps6116\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps3473;rev=1/revisions/ps3473;rev=1\",\r\n \"apiId\": \"/apis/ps3473;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-04-30T19:26:44.103Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:26:44.137Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerapifromFile\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps6621;rev=2/revisions/ps6621;rev=2\",\r\n \"apiId\": \"/apis/ps6621;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-07-21T16:33:41.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:33:42.093Z\",\r\n \"description\": \"ps8005\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps6621;rev=1/revisions/ps6621;rev=1\",\r\n \"apiId\": \"/apis/ps6621;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-07-21T16:33:05.293Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:33:05.327Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerapifromFile\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps3473;rev=2\",\r\n \"notes\": \"ps8337\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps6621;rev=2\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "003834ac-4473-4307-b42c-f34c0a6c3e61"
+ "013a045f-21c7-4b49-afc9-00f2003e8a13"
],
"Accept-Language": [
"en-US"
@@ -856,7 +856,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -873,13 +873,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACb8=\""
+ "\"AAAAAAAAO+M=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c09e5970-e164-4d21-bc8f-843bac48fec0"
+ "cffa2bba-07b0-467f-9d7f-efb2999a39a9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -888,19 +888,19 @@
"1196"
],
"x-ms-correlation-request-id": [
- "c4c638e6-6b8b-4c35-9175-0d72636c3a3a"
+ "726043dd-df08-46f3-89a5-d53e8a7fef17"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192752Z:c4c638e6-6b8b-4c35-9175-0d72636c3a3a"
+ "WESTUS:20200721T163414Z:726043dd-df08-46f3-89a5-d53e8a7fef17"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:52 GMT"
+ "Tue, 21 Jul 2020 16:34:13 GMT"
],
"Content-Length": [
- "603"
+ "601"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -909,17 +909,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"createdDateTime\": \"2020-04-30T19:27:52.4489034Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.4489034Z\",\r\n \"notes\": \"ps8337\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.2143432Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.2143432Z\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "842f0547-25f3-4a6f-a336-65ee5f0edd4c"
+ "b0582d12-4f2f-497e-8b3a-6a949a477d1c"
],
"Accept-Language": [
"en-US"
@@ -928,7 +928,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -939,13 +939,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACb8=\""
+ "\"AAAAAAAAO+M=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87a12a52-9221-42f7-89e8-55f181329097"
+ "cb353d11-a9ec-4aa6-81f4-558f7703f8d0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -954,16 +954,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "57aa0262-6f0e-410d-b665-05308ad26abd"
+ "622a6a47-7fbd-4fc5-8f38-6a7e7f106f0c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192752Z:57aa0262-6f0e-410d-b665-05308ad26abd"
+ "WESTUS:20200721T163414Z:622a6a47-7fbd-4fc5-8f38-6a7e7f106f0c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:52 GMT"
+ "Tue, 21 Jul 2020 16:34:13 GMT"
],
"Content-Length": [
"593"
@@ -975,17 +975,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"createdDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"notes\": \"ps8337\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00eb53ba-5cbf-47d6-8d20-35049909d486"
+ "d9ba910d-d33e-4375-9496-3c8a26a7fe8d"
],
"Accept-Language": [
"en-US"
@@ -994,7 +994,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1005,13 +1005,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACcI=\""
+ "\"AAAAAAAAO+Y=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9b1061dd-a3d8-4add-a4fd-aa71db9bdea5"
+ "2e7e511d-5bd1-474e-a610-0e9bac885140"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1020,16 +1020,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "8d761492-9894-404a-b593-a09078e16661"
+ "3ec54b4a-805a-42cc-af5b-9660d569b893"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192753Z:8d761492-9894-404a-b593-a09078e16661"
+ "WESTUS:20200721T163415Z:3ec54b4a-805a-42cc-af5b-9660d569b893"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:52 GMT"
+ "Tue, 21 Jul 2020 16:34:14 GMT"
],
"Content-Length": [
"593"
@@ -1041,17 +1041,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"createdDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"notes\": \"ps2660\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps1127\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"notes\": \"ps2660\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"notes\": \"ps1127\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8dfdf071-ffaf-4fff-911e-d24e8193d68a"
+ "a21e5202-47b8-4bbb-a379-5d284e9a5010"
],
"If-Match": [
"*"
@@ -1063,7 +1063,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1083,7 +1083,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "819d2bc8-749a-4084-97b4-d636c90ba9c8"
+ "69c166bb-8b2a-4190-9d39-f025e30f68e3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1092,16 +1092,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "38de18cb-f109-424a-931c-7d32a1292c91"
+ "d3c35835-7663-47d9-a856-48a2d08241cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192753Z:38de18cb-f109-424a-931c-7d32a1292c91"
+ "WESTUS:20200721T163414Z:d3c35835-7663-47d9-a856-48a2d08241cb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:52 GMT"
+ "Tue, 21 Jul 2020 16:34:14 GMT"
],
"Expires": [
"-1"
@@ -1111,13 +1111,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56dde405-1bc2-4784-ae94-33de7963f1d5"
+ "f5bbf9e5-4808-4ed7-9398-aea431454b64"
],
"Accept-Language": [
"en-US"
@@ -1126,7 +1126,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1140,7 +1140,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6f39995-6693-41dc-b989-75998e8dddca"
+ "3c38dd2f-a212-497e-88b6-ba3bc62b65d1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1149,16 +1149,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "97aa8c7e-3e82-499f-ad54-f7dd8ccd2d2e"
+ "195f523b-7d77-40b0-97ff-547259551b03"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192753Z:97aa8c7e-3e82-499f-ad54-f7dd8ccd2d2e"
+ "WESTUS:20200721T163415Z:195f523b-7d77-40b0-97ff-547259551b03"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:53 GMT"
+ "Tue, 21 Jul 2020 16:34:14 GMT"
],
"Content-Length": [
"499"
@@ -1170,17 +1170,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"notes\": \"ps2660\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps1127\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D1?deleteRevisions=false&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D1?deleteRevisions=false&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b006f78b-8717-484c-9d98-95dea05bf95b"
+ "743c90b8-a0bd-4ad2-be4f-61af47221904"
],
"If-Match": [
"*"
@@ -1192,7 +1192,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1206,7 +1206,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "598a57a8-2cd4-45e6-b12a-2681891f1365"
+ "96b51515-0a33-4e08-a9b1-104dcae57133"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1215,16 +1215,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "37ab941f-107f-494a-ba3e-f9bdfb49030d"
+ "2b42301e-533a-43ec-b51c-786201dd429b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192754Z:37ab941f-107f-494a-ba3e-f9bdfb49030d"
+ "WESTUS:20200721T163416Z:2b42301e-533a-43ec-b51c-786201dd429b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:53 GMT"
+ "Tue, 21 Jul 2020 16:34:15 GMT"
],
"Expires": [
"-1"
@@ -1237,13 +1237,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1684dcc2-6c07-44aa-8a82-6b3d44414914"
+ "148cf514-77b5-4ac4-a4ed-08ac24fd1dde"
],
"If-Match": [
"*"
@@ -1255,7 +1255,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1269,7 +1269,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95868ebf-f1b3-45a6-b48b-57004e9f3cc6"
+ "31992756-211a-4ac7-8f5f-dde05fdff96a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1278,16 +1278,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "7786e476-646e-43e3-957a-422419038c4c"
+ "b1f4b66f-a222-452f-812d-28b14aaf0fb6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192754Z:7786e476-646e-43e3-957a-422419038c4c"
+ "WESTUS:20200721T163417Z:b1f4b66f-a222-452f-812d-28b14aaf0fb6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:27:54 GMT"
+ "Tue, 21 Jul 2020 16:34:16 GMT"
],
"Expires": [
"-1"
@@ -1302,11 +1302,11 @@
],
"Names": {
"": [
- "ps3473",
- "ps1729",
- "ps6116",
- "ps8337",
- "ps2660"
+ "ps6621",
+ "ps874",
+ "ps8005",
+ "ps6395",
+ "ps1127"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json
index 6e638fec03e2..da2137199b93 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4234\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6515\",\r\n \"query\": \"ps2943\"\r\n },\r\n \"displayName\": \"ps2697\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2964\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9968\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"displayName\": \"ps9920\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d2c620d-17e2-4c1e-bdff-df42a0c6b8de"
+ "43790c31-72d2-48b0-8508-8579c9c19bf0"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEM=\""
+ "\"AAAAAAAAPo4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd6bb31c-85e3-4039-966f-846b5e6bbdaf"
+ "8a6e9992-9eba-46ae-9116-272199d8ec3e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "2ba379af-b905-4b94-91e1-b466ead8d883"
+ "54c6df2c-8f76-485e-bdb7-3adf04608ac3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194250Z:2ba379af-b905-4b94-91e1-b466ead8d883"
+ "WESTUS:20200721T165021Z:54c6df2c-8f76-485e-bdb7-3adf04608ac3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:50 GMT"
+ "Tue, 21 Jul 2020 16:50:20 GMT"
],
"Content-Length": [
"739"
@@ -69,12 +69,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1855\",\r\n \"properties\": {\r\n \"displayName\": \"ps2697\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4234\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2964\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6515\",\r\n \"query\": \"ps2943\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1786\",\r\n \"properties\": {\r\n \"displayName\": \"ps9920\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9968\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -82,7 +82,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,31 +93,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEM=\""
+ "\"AAAAAAAAPo4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4fed4207-d71c-428d-bc6f-fa455369cf75"
+ "14c42fc8-069e-47c1-9643-7316d511ab98"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11999"
],
"x-ms-correlation-request-id": [
- "d48f5f40-e62c-48df-8198-b355763a4052"
+ "231ed694-0194-4c09-a554-08d66178c7b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194320Z:d48f5f40-e62c-48df-8198-b355763a4052"
+ "WESTUS:20200721T165051Z:231ed694-0194-4c09-a554-08d66178c7b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:19 GMT"
+ "Tue, 21 Jul 2020 16:50:51 GMT"
],
"Content-Length": [
"739"
@@ -129,17 +129,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1855\",\r\n \"properties\": {\r\n \"displayName\": \"ps2697\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4234\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2964\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6515\",\r\n \"query\": \"ps2943\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1786\",\r\n \"properties\": {\r\n \"displayName\": \"ps9920\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9968\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fa3275f2-e29f-4108-807f-30e411579762"
+ "f7d08b36-2b06-4da6-b80e-417be720fb8a"
],
"Accept-Language": [
"en-US"
@@ -148,7 +148,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,25 +162,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "339e2c46-8512-4abe-b68d-fce2aa0eb925"
+ "09cd27e9-dca5-47a5-a7bb-53b68f9f0a76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11998"
],
"x-ms-correlation-request-id": [
- "5c4c0f6d-e135-472e-983c-06e715fb9e75"
+ "79eb457f-ca87-4667-9171-9cef0bfde194"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194320Z:5c4c0f6d-e135-472e-983c-06e715fb9e75"
+ "WESTUS:20200721T165051Z:79eb457f-ca87-4667-9171-9cef0bfde194"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:19 GMT"
+ "Tue, 21 Jul 2020 16:50:51 GMT"
],
"Content-Length": [
"34"
@@ -196,13 +196,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da793d1f-525e-462f-9404-d5baa78c6c8c"
+ "a87fd14c-50ea-49da-aee6-a35662f25277"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,25 +225,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ec9153dc-c3b8-4d27-be8d-caef3e7f65f9"
+ "b186f1ed-bded-4a42-b980-f76866c7b768"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11995"
],
"x-ms-correlation-request-id": [
- "43833494-3381-49bf-b0bc-f2df2496691c"
+ "18e440d9-91bc-4722-9c81-d4299bfc4bf5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194351Z:43833494-3381-49bf-b0bc-f2df2496691c"
+ "WESTUS:20200721T165122Z:18e440d9-91bc-4722-9c81-d4299bfc4bf5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:50 GMT"
+ "Tue, 21 Jul 2020 16:51:21 GMT"
],
"Content-Length": [
"2007"
@@ -255,17 +255,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9cdb0c17-6851-4210-bb6d-cc1dcaa8250b"
+ "1cfa2e13-fcdc-45ee-9650-84110f22c0f2"
],
"Accept-Language": [
"en-US"
@@ -274,7 +274,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -291,31 +291,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a58a2ca601230023203&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171ceba2ca600fe4c29777&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f9a89f32-2751-4d42-85be-e96b4c2f6c44"
+ "62be4b4c-766d-491d-a57e-56de44a2afad"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "efb495eb-e74e-49d8-9328-ed5436093637"
+ "59f5526f-e3d4-4238-be6f-c3a2ee48d7e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194320Z:efb495eb-e74e-49d8-9328-ed5436093637"
+ "WESTUS:20200721T165051Z:59f5526f-e3d4-4238-be6f-c3a2ee48d7e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:20 GMT"
+ "Tue, 21 Jul 2020 16:50:51 GMT"
],
"Expires": [
"-1"
@@ -328,13 +328,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ae45a10-3fe4-4ef7-b2b0-a7a846b392f5"
+ "2feed778-9f67-4895-aa26-0e41b5291a04"
],
"If-Match": [
"*"
@@ -346,7 +346,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -363,31 +363,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a77a2ca601230023207&asyncCode=200"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171d0aa2ca600fe4c2977b&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6ac4ec35-f75c-4e4f-a933-948512b11e64"
+ "03a239bc-68ab-46f5-b336-04674e5ab226"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "89113d1b-befa-4f6d-b28b-e526b219810e"
+ "0c2af5d0-61dc-40e2-993c-2e6f1379fa85"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194351Z:89113d1b-befa-4f6d-b28b-e526b219810e"
+ "WESTUS:20200721T165122Z:0c2af5d0-61dc-40e2-993c-2e6f1379fa85"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:51 GMT"
+ "Tue, 21 Jul 2020 16:51:22 GMT"
],
"Expires": [
"-1"
@@ -400,8 +400,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a58a2ca601230023203&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMmE1OGEyY2E2MDEyMzAwMjMyMDMmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171ceba2ca600fe4c29777&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWNlYmEyY2E2MDBmZTRjMjk3NzcmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -409,7 +409,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,31 +420,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEc=\""
+ "\"AAAAAAAAPpI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f7ac9ace-b088-46b5-a392-325c22d55ca9"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "c6fd9c0f-77bf-4731-a153-6bcb961c781d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"x-ms-correlation-request-id": [
- "84e667f4-d0c5-411f-800a-bd074bd0a4af"
+ "8efebe29-331a-4d36-b829-36b70fa40272"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194350Z:84e667f4-d0c5-411f-800a-bd074bd0a4af"
+ "WESTUS:20200721T165121Z:8efebe29-331a-4d36-b829-36b70fa40272"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:50 GMT"
+ "Tue, 21 Jul 2020 16:51:21 GMT"
],
"Content-Length": [
"1699"
@@ -456,17 +456,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d091ec6f-ea1a-4350-ac70-5d7b2035b4af"
+ "50389b38-8c4d-4559-946f-6d665d93b3c0"
],
"Accept-Language": [
"en-US"
@@ -475,7 +475,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -486,31 +486,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEc=\""
+ "\"AAAAAAAAPpI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9b087f28-ad56-47ef-994d-1593c4baf218"
+ "fc37200f-5101-4e59-a857-6bde684b4c65"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11996"
],
"x-ms-correlation-request-id": [
- "4fc27867-541e-4572-a7e1-5aa5e34085b1"
+ "023b6706-edc6-4295-b606-fd7ec12ebb09"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194351Z:4fc27867-541e-4572-a7e1-5aa5e34085b1"
+ "WESTUS:20200721T165122Z:023b6706-edc6-4295-b606-fd7ec12ebb09"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:43:50 GMT"
+ "Tue, 21 Jul 2020 16:51:21 GMT"
],
"Content-Length": [
"1699"
@@ -522,12 +522,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a77a2ca601230023207&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMmE3N2EyY2E2MDEyMzAwMjMyMDcmYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171d0aa2ca600fe4c2977b&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWQwYWEyY2E2MDBmZTRjMjk3N2ImYXN5bmNDb2RlPTIwMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -535,7 +535,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -546,31 +546,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEg=\""
+ "\"AAAAAAAAPpM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ed23608d-9ca3-426f-a33f-a4961d2a50f3"
+ "9eb9ded7-48fc-4459-8bf2-a53be3e4490c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11994"
],
"x-ms-correlation-request-id": [
- "a479668c-5205-41f8-ae12-cccdee92e9ca"
+ "d55c9e24-760a-4ef1-9cd4-2e673e255d4f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194421Z:a479668c-5205-41f8-ae12-cccdee92e9ca"
+ "WESTUS:20200721T165152Z:d55c9e24-760a-4ef1-9cd4-2e673e255d4f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:44:20 GMT"
+ "Tue, 21 Jul 2020 16:51:52 GMT"
],
"Content-Length": [
"1525"
@@ -582,17 +582,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b166968d-6707-499e-8378-2e5439f217ab"
+ "7007a798-5e8e-49a3-8bc5-746dd22f5d4f"
],
"If-Match": [
"*"
@@ -604,7 +604,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -618,25 +618,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e0e01ff-5a04-40d5-997d-58e89f10138f"
+ "a660a7b5-a384-4ca3-9dd9-4aab97a1d7e9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "22828ea1-e790-47f5-bd73-879552c39562"
+ "9515a1eb-34f5-4286-8e86-cef80e959faa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194422Z:22828ea1-e790-47f5-bd73-879552c39562"
+ "WESTUS:20200721T165153Z:9515a1eb-34f5-4286-8e86-cef80e959faa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:44:22 GMT"
+ "Tue, 21 Jul 2020 16:51:52 GMT"
],
"Expires": [
"-1"
@@ -649,13 +649,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2aedfa34-ed84-4927-86b9-4bc63f00fcf4"
+ "d53095f6-c1d5-4b92-ae73-3f2d62d0b12b"
],
"If-Match": [
"*"
@@ -667,7 +667,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,25 +681,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d74fd20-1ba3-401a-846f-ccecf09f53ec"
+ "1a0ef89f-73db-45ec-b398-703d68304736"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14998"
],
"x-ms-correlation-request-id": [
- "508fb101-ff79-4185-b491-849f8999e813"
+ "624ac5dc-f0cc-41df-826c-52827a87e858"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194422Z:508fb101-ff79-4185-b491-849f8999e813"
+ "WESTUS:20200721T165153Z:624ac5dc-f0cc-41df-826c-52827a87e858"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:44:22 GMT"
+ "Tue, 21 Jul 2020 16:51:52 GMT"
],
"Expires": [
"-1"
@@ -709,13 +709,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c76b9f03-22ec-4c59-9b80-14cdbba14337"
+ "ecc25af1-869c-4a93-bf29-ccca2f0661b0"
],
"If-Match": [
"*"
@@ -727,7 +727,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -741,25 +741,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c79591b8-86de-4e04-b440-65c180f66c60"
+ "adc8d910-be6a-4d20-bfe1-26585e10d106"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "067435c3-8722-4907-8cf8-86a968514c4e"
+ "9f4e08b7-4aa1-4a84-8ba2-9299cb43ffa0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194422Z:067435c3-8722-4907-8cf8-86a968514c4e"
+ "WESTUS:20200721T165153Z:9f4e08b7-4aa1-4a84-8ba2-9299cb43ffa0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:44:22 GMT"
+ "Tue, 21 Jul 2020 16:51:52 GMT"
],
"Expires": [
"-1"
@@ -774,13 +774,13 @@
],
"Names": {
"": [
- "ps1855",
- "ps4652",
- "ps2697",
- "ps4234",
- "ps2964",
- "ps6515",
- "ps2943"
+ "ps1786",
+ "ps1151",
+ "ps9920",
+ "ps9968",
+ "ps8246",
+ "ps6732",
+ "ps9879"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json
index 4bc3f0a6cd27..7c874762695c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromFile\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7594001-8343-4acd-a5ad-390e0c4b7ea0"
+ "dde07a2e-acb9-409d-bae8-c7683ed161aa"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01&asyncId=5eab26e4a2ca60123002312e&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01&asyncId=5f171938a2ca600fe4c2968f&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "62415d3e-922c-4ba5-af47-48a7df4f0963"
+ "1258fb6e-db04-4311-b57c-36cbdab89065"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +48,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "0313aa1d-f2f1-4717-998a-e4764b59cf0d"
+ "7bf1596b-b81b-4b43-8e94-d863d6211e02"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192836Z:0313aa1d-f2f1-4717-998a-e4764b59cf0d"
+ "WESTUS:20200721T163504Z:7bf1596b-b81b-4b43-8e94-d863d6211e02"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:28:35 GMT"
+ "Tue, 21 Jul 2020 16:35:03 GMT"
],
"Expires": [
"-1"
@@ -70,8 +70,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01&asyncId=5eab26e4a2ca60123002312e&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjZlNGEyY2E2MDEyMzAwMjMxMmUmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01&asyncId=5f171938a2ca600fe4c2968f&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTkzOGEyY2E2MDBmZTRjMjk2OGYmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAChY=\""
+ "\"AAAAAAAAPDo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5e562fa9-19b0-4323-9a41-9a8306191fbb"
+ "87068668-385d-408b-88ee-89b4ed83b5d6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "a9c122f7-b22e-4c4a-be8a-a742225e9231"
+ "2f5a969b-6935-48f6-abf3-8592a6c14b5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192906Z:a9c122f7-b22e-4c4a-be8a-a742225e9231"
+ "WESTUS:20200721T163534Z:2f5a969b-6935-48f6-abf3-8592a6c14b5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:06 GMT"
+ "Tue, 21 Jul 2020 16:35:34 GMT"
],
"Content-Length": [
"786"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5080\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8346\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2e5033d-dfb4-4174-ab5e-57476d50f7ad"
+ "1b61470d-bc6b-4daf-a658-2f339f8f74dc"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +156,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAChY=\""
+ "\"AAAAAAAAPDo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e45e6210-9027-4bd3-b7bb-ae4474debce2"
+ "49cd0db3-e081-48b7-9561-9961a6d2c3d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "9752d795-2240-4602-bdab-1206f6ac2fc4"
+ "43145460-a79d-44a8-8ce5-e879e1132acc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192906Z:9752d795-2240-4602-bdab-1206f6ac2fc4"
+ "WESTUS:20200721T163534Z:43145460-a79d-44a8-8ce5-e879e1132acc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:06 GMT"
+ "Tue, 21 Jul 2020 16:35:34 GMT"
],
"Content-Length": [
"786"
@@ -192,17 +192,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5080\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8346\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "700b6e0f-f789-4021-8252-3d8066c4728a"
+ "642f4e0d-49fd-4490-a566-0b388d98d19c"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6777e986-fb31-4c5b-b83a-7b8b2e87bbad"
+ "6924c263-0828-48fa-8af8-9905e97688a8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -234,16 +234,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "d38371be-a102-434f-80d8-d9f5bac34d1a"
+ "4a99c5d5-4b4f-4182-a9b8-ebba795e9e12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192907Z:d38371be-a102-434f-80d8-d9f5bac34d1a"
+ "WESTUS:20200721T163535Z:4a99c5d5-4b4f-4182-a9b8-ebba795e9e12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:06 GMT"
+ "Tue, 21 Jul 2020 16:35:34 GMT"
],
"Content-Length": [
"6975"
@@ -255,17 +255,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8168676c-6baa-4b21-8609-4975a90bb205"
+ "55bef473-4a6d-4ef7-ab22-ffa1e84124a5"
],
"Accept-Language": [
"en-US"
@@ -274,7 +274,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -288,7 +288,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cffe6bd9-d973-437c-b967-6f9068e61e65"
+ "f2d43a17-7af8-4857-a298-20ab530ea190"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -297,16 +297,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "ea93d991-33a3-4542-808c-32afb9a6ad05"
+ "d5fa4b63-5a83-4072-8184-f60e25fbc435"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192938Z:ea93d991-33a3-4542-808c-32afb9a6ad05"
+ "WESTUS:20200721T163606Z:d5fa4b63-5a83-4072-8184-f60e25fbc435"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:37 GMT"
+ "Tue, 21 Jul 2020 16:36:05 GMT"
],
"Content-Length": [
"1960"
@@ -318,17 +318,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd3a5ed1-3f6c-4933-93ed-74da64ea97dc"
+ "58baaeb4-fbf8-453f-bcde-83ec288d6327"
],
"Accept-Language": [
"en-US"
@@ -337,7 +337,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -354,13 +354,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2703a2ca601230023135&asyncCode=200"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171957a2ca600fe4c29696&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1999860-cb65-4d2e-ad86-f473ecf639a4"
+ "5a70e26c-6626-4439-ae55-3126904b067f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,16 +369,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "a23912f7-8956-42da-ad28-73176d1936cb"
+ "e22c14e4-2231-44c1-997e-3358e3a2742b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192907Z:a23912f7-8956-42da-ad28-73176d1936cb"
+ "WESTUS:20200721T163535Z:e22c14e4-2231-44c1-997e-3358e3a2742b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:07 GMT"
+ "Tue, 21 Jul 2020 16:35:35 GMT"
],
"Expires": [
"-1"
@@ -391,13 +391,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19acdeaa-7a8e-4256-84ba-ce23abeffb62"
+ "6d355e17-a1fe-45e7-9e27-cedeb06ea125"
],
"If-Match": [
"*"
@@ -409,7 +409,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,13 +426,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2722a2ca601230023139&asyncCode=200"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171976a2ca600fe4c2969a&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "22b26e19-08d9-44a5-895f-8bc4228dfa3a"
+ "2f7a0d1d-0b85-41aa-b2f4-abd62bf3a3ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,16 +441,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "3a0b9682-122e-414f-aa03-571789351958"
+ "f534d69a-9f50-452c-a070-5d3113313a3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192938Z:3a0b9682-122e-414f-aa03-571789351958"
+ "WESTUS:20200721T163606Z:f534d69a-9f50-452c-a070-5d3113313a3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:38 GMT"
+ "Tue, 21 Jul 2020 16:36:06 GMT"
],
"Expires": [
"-1"
@@ -463,8 +463,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2703a2ca601230023135&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjcwM2EyY2E2MDEyMzAwMjMxMzUmYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171957a2ca600fe4c29696&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTk1N2EyY2E2MDBmZTRjMjk2OTYmYXN5bmNDb2RlPTIwMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -472,7 +472,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -483,13 +483,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiU=\""
+ "\"AAAAAAAAPEg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70d9b2ff-fab8-4af7-a7af-84cdbba13906"
+ "b5367885-39ff-47d1-a68d-ff164a3ccc77"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -498,16 +498,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "cd218525-6693-439c-8a8b-5f9b9f893cf5"
+ "24aa07b3-d6f8-4baf-991b-5ff520fed905"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192938Z:cd218525-6693-439c-8a8b-5f9b9f893cf5"
+ "WESTUS:20200721T163605Z:24aa07b3-d6f8-4baf-991b-5ff520fed905"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:37 GMT"
+ "Tue, 21 Jul 2020 16:36:05 GMT"
],
"Content-Length": [
"1876"
@@ -519,17 +519,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a95c6938-f0d8-4971-8c27-d483d187f50e"
+ "734cb0be-017f-4734-b84d-b314bbf8354a"
],
"Accept-Language": [
"en-US"
@@ -538,7 +538,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -549,13 +549,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiU=\""
+ "\"AAAAAAAAPEg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "37575852-d9e5-415b-bdea-5eeb91fd7565"
+ "d771cff9-b3b8-4f8c-9f19-59fe2e300e0e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -564,16 +564,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "249c4867-108c-42a2-9b88-166b62745d3f"
+ "7e290778-c2c6-4863-952a-4a3e099b3a12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T192938Z:249c4867-108c-42a2-9b88-166b62745d3f"
+ "WESTUS:20200721T163605Z:7e290778-c2c6-4863-952a-4a3e099b3a12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:29:37 GMT"
+ "Tue, 21 Jul 2020 16:36:05 GMT"
],
"Content-Length": [
"1876"
@@ -585,12 +585,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2722a2ca601230023139&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjcyMmEyY2E2MDEyMzAwMjMxMzkmYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171976a2ca600fe4c2969a&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTk3NmEyY2E2MDBmZTRjMjk2OWEmYXN5bmNDb2RlPTIwMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,7 +598,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,31 +609,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiY=\""
+ "\"AAAAAAAAPEk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f3d99851-2581-4840-8123-59aadba6aef2"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "772d1c63-8e08-469e-9372-1d5d871ce77e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
"x-ms-correlation-request-id": [
- "397a3ffb-e92b-46b3-8a17-8802824e2425"
+ "7754e847-9ae4-4d21-8dd6-554f29b9258a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193008Z:397a3ffb-e92b-46b3-8a17-8802824e2425"
+ "WESTUS:20200721T163636Z:7754e847-9ae4-4d21-8dd6-554f29b9258a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:07 GMT"
+ "Tue, 21 Jul 2020 16:36:36 GMT"
],
"Content-Length": [
"1855"
@@ -645,17 +645,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1034bf6d-3b70-47d7-b26d-007c1ffbdbb2"
+ "b85581d8-49c1-4a74-9b4b-b558343826f2"
],
"If-Match": [
"*"
@@ -667,7 +667,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,7 +681,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6ef61b3-a4ea-4cb8-9e01-469b171a3ffa"
+ "5feb2283-10d2-4e17-b9ab-e60d334662fc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -690,16 +690,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "5c38f321-68ad-490f-bc72-90d4f233a356"
+ "8f2daed4-7013-409f-ac45-c87030210b26"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193008Z:5c38f321-68ad-490f-bc72-90d4f233a356"
+ "WESTUS:20200721T163636Z:8f2daed4-7013-409f-ac45-c87030210b26"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:08 GMT"
+ "Tue, 21 Jul 2020 16:36:36 GMT"
],
"Expires": [
"-1"
@@ -714,8 +714,8 @@
],
"Names": {
"": [
- "ps5080",
- "ps4778"
+ "ps8346",
+ "ps6242"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json
index ced602e4089e..62007c549efa 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23e30f53-33bf-4840-8eed-8f56a2517425"
+ "8c310758-14d7-48ed-a8e0-13674e245f19"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,25 +30,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b70c1b68-c1ba-403e-8e7a-0e652fda0810"
+ "b9656ff4-d122-4980-9c27-3706b875d56b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11970"
],
"x-ms-correlation-request-id": [
- "47ee6681-fcbe-470d-9540-8cc6a29cd09b"
+ "2ab4e086-dc69-4c3a-9d1a-33f004affb9c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193820Z:47ee6681-fcbe-470d-9540-8cc6a29cd09b"
+ "WESTUS:20200721T164538Z:2ab4e086-dc69-4c3a-9d1a-33f004affb9c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:20 GMT"
+ "Tue, 21 Jul 2020 16:45:37 GMT"
],
"Content-Length": [
"34"
@@ -64,13 +64,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9644\",\r\n \"versionQueryName\": \"ps8873\",\r\n \"displayName\": \"ps2105\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3041\",\r\n \"versionQueryName\": \"ps264\",\r\n \"displayName\": \"ps9370\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0649c848-66cd-4e9d-83e4-8808d7376d78"
+ "7f2d894e-ee9a-4479-88b3-bdb4b76c9e67"
],
"Accept-Language": [
"en-US"
@@ -79,13 +79,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "156"
+ "155"
]
},
"ResponseHeaders": {
@@ -96,34 +96,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC8k=\""
+ "\"AAAAAAAAPhU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5e002486-357e-4bf1-86a5-ad205ee0369b"
+ "f33f04fb-162b-4b6b-aedb-3aae69ef602d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1189"
],
"x-ms-correlation-request-id": [
- "916a88da-c67f-4276-a895-fcbf0ce868d4"
+ "661d78b1-3e45-4247-83d8-a80da04c98f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193821Z:916a88da-c67f-4276-a895-fcbf0ce868d4"
+ "WESTUS:20200721T164538Z:661d78b1-3e45-4247-83d8-a80da04c98f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:20 GMT"
+ "Tue, 21 Jul 2020 16:45:37 GMT"
],
"Content-Length": [
- "449"
+ "448"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,17 +132,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8873\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps264\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9644\",\r\n \"versionHeaderName\": \"ps7358\",\r\n \"displayName\": \"ps2105\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3041\",\r\n \"versionHeaderName\": \"ps9664\",\r\n \"displayName\": \"ps9370\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8d3ec87-a212-40e3-806d-64b79f36fc3f"
+ "64f25056-f6fe-4657-bd1f-93ed3144da80"
],
"If-Match": [
"*"
@@ -154,7 +154,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -171,31 +171,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC8w=\""
+ "\"AAAAAAAAPhg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4a7554ad-10df-488f-ad72-4e8b64cc3164"
+ "ce0b9145-a2ed-4e54-a357-cc0a88acae2a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1188"
],
"x-ms-correlation-request-id": [
- "d00eb7a8-50c9-44cd-bd1c-617a88468177"
+ "c62c96c9-7eda-4989-9dea-fe15c551d77f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193821Z:d00eb7a8-50c9-44cd-bd1c-617a88468177"
+ "WESTUS:20200721T164539Z:c62c96c9-7eda-4989-9dea-fe15c551d77f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:21 GMT"
+ "Tue, 21 Jul 2020 16:45:38 GMT"
],
"Content-Length": [
"450"
@@ -207,17 +207,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7358\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9339e9e-0e8c-4647-8197-a99f5f851462"
+ "20278d99-1d66-4065-b94d-89f5cac0c560"
],
"Accept-Language": [
"en-US"
@@ -226,7 +226,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,34 +237,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC8k=\""
+ "\"AAAAAAAAPhU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e8863621-e31f-4faf-ae41-0e4d220186a9"
+ "7a904634-56b0-4319-bd53-3f895a700de2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11969"
],
"x-ms-correlation-request-id": [
- "f2ccf9a6-0c0b-4764-bba7-ceb5c5d5f3f3"
+ "f13aad40-a73c-4cbb-b884-8368c41275e3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193821Z:f2ccf9a6-0c0b-4764-bba7-ceb5c5d5f3f3"
+ "WESTUS:20200721T164538Z:f13aad40-a73c-4cbb-b884-8368c41275e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:20 GMT"
+ "Tue, 21 Jul 2020 16:45:38 GMT"
],
"Content-Length": [
- "449"
+ "448"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -273,17 +273,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8873\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps264\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1eaa885-d276-4e77-b03b-b820387f6328"
+ "ad6df4f9-395a-4561-9e04-7b03fc6b7bcf"
],
"Accept-Language": [
"en-US"
@@ -292,7 +292,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -303,31 +303,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC8w=\""
+ "\"AAAAAAAAPhg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cbd52f17-936f-41ce-be34-3d8d1f421c4c"
+ "37ddc4e7-0766-42ef-906e-84bdd7ba9a61"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11968"
],
"x-ms-correlation-request-id": [
- "12326a04-68f6-470a-8e79-716d6b7f20e2"
+ "9dbba547-78b5-4e41-a5ea-ed31347afc9e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193821Z:12326a04-68f6-470a-8e79-716d6b7f20e2"
+ "WESTUS:20200721T164539Z:9dbba547-78b5-4e41-a5ea-ed31347afc9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:21 GMT"
+ "Tue, 21 Jul 2020 16:45:38 GMT"
],
"Content-Length": [
"450"
@@ -339,17 +339,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7358\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f61095df-1288-4a73-aaff-e1f1adc28fe2"
+ "5395a132-44d5-4e3a-961f-45e8562c50c9"
],
"Accept-Language": [
"en-US"
@@ -358,7 +358,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -375,31 +375,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01&asyncId=5eab292da2ca6012300231d1&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01&asyncId=5f171bb3a2ca600fe4c29745&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "32c1a9dd-622f-48a4-ae4a-ada9b97fa575"
+ "214c6b8b-9fcf-4658-a3aa-4dc0fe296c6d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1187"
],
"x-ms-correlation-request-id": [
- "b67c7aa2-04aa-4d9f-b95d-b4c94494d340"
+ "b7643132-6a82-41c2-83aa-aaa903958858"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193822Z:b67c7aa2-04aa-4d9f-b95d-b4c94494d340"
+ "WESTUS:20200721T164539Z:b7643132-6a82-41c2-83aa-aaa903958858"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:21 GMT"
+ "Tue, 21 Jul 2020 16:45:38 GMT"
],
"Expires": [
"-1"
@@ -412,8 +412,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01&asyncId=5eab292da2ca6012300231d1&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjkyZGEyY2E2MDEyMzAwMjMxZDEmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01&asyncId=5f171bb3a2ca600fe4c29745&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWJiM2EyY2E2MDBmZTRjMjk3NDUmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -421,7 +421,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,31 +432,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC88=\""
+ "\"AAAAAAAAPhs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db6ff1bd-6e6e-4d95-95d9-418f41575175"
+ "d02f8426-a996-465f-8818-c9f1ab79a6ba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11967"
],
"x-ms-correlation-request-id": [
- "f3941cf2-4d2b-440e-8c07-acd7177d031b"
+ "01fdcbbe-1308-4d5c-ba2e-05b8feb2daf1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193852Z:f3941cf2-4d2b-440e-8c07-acd7177d031b"
+ "WESTUS:20200721T164610Z:01fdcbbe-1308-4d5c-ba2e-05b8feb2daf1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:51 GMT"
+ "Tue, 21 Jul 2020 16:46:09 GMT"
],
"Content-Length": [
"884"
@@ -468,17 +468,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4708\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a67ddf1-f16c-498e-ad4e-421569b40b02"
+ "db55bde6-f223-4564-be8d-0c026166b3fe"
],
"Accept-Language": [
"en-US"
@@ -487,7 +487,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,31 +498,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC88=\""
+ "\"AAAAAAAAPhs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b32e9e81-82a4-4dd9-8860-341c460742ea"
+ "7d60a78d-f093-46cd-b790-ecb346c5dd33"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11966"
],
"x-ms-correlation-request-id": [
- "49ff39ed-fa6a-4943-801a-abc1f5da920a"
+ "4b65159c-83a1-4949-b839-ff17c93acb8d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193852Z:49ff39ed-fa6a-4943-801a-abc1f5da920a"
+ "WESTUS:20200721T164610Z:4b65159c-83a1-4949-b839-ff17c93acb8d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:51 GMT"
+ "Tue, 21 Jul 2020 16:46:10 GMT"
],
"Content-Length": [
"884"
@@ -534,17 +534,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4708\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499%3Brev%3D1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"v1\",\r\n \"isCurrent\": true,\r\n \"apiVersionDescription\": \"ps9644\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"v1\",\r\n \"isCurrent\": true,\r\n \"apiVersionDescription\": \"ps3041\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25e023d3-61de-45c5-a74c-bbf9376af61f"
+ "556c3896-79ad-422a-9a10-e7af1434135b"
],
"If-Match": [
"*"
@@ -556,7 +556,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -573,31 +573,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC+w=\""
+ "\"AAAAAAAAPjg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3fdd99ca-a010-43af-9d33-57c1897e363e"
+ "78e4b627-bf8a-49bd-949c-12738cb31e73"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1186"
],
"x-ms-correlation-request-id": [
- "052dbc60-e3fa-4cde-bde5-e519fb19fde4"
+ "64736a7e-fd92-4765-a1b3-7b6e661c99c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193853Z:052dbc60-e3fa-4cde-bde5-e519fb19fde4"
+ "WESTUS:20200721T164613Z:64736a7e-fd92-4765-a1b3-7b6e661c99c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:52 GMT"
+ "Tue, 21 Jul 2020 16:46:13 GMT"
],
"Content-Length": [
"1522"
@@ -609,17 +609,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4708\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"v1\",\r\n \"apiVersionDescription\": \"ps9644\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"name\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7358\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"v1\",\r\n \"apiVersionDescription\": \"ps3041\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"name\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e6c0e74-3ede-4592-9e33-8714f67b5773"
+ "11e9662d-1ba1-41cf-9652-a6504b22053f"
],
"If-Match": [
"*"
@@ -631,7 +631,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -645,25 +645,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e2efef60-9788-42d9-b6b0-a8019d9d7c0b"
+ "616a2553-1c37-4891-b12f-777fbd2c40db"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14989"
],
"x-ms-correlation-request-id": [
- "e103550a-be2c-4cf1-aa46-be8f30067434"
+ "18cb5863-ce32-4a9e-895a-689678ea8b23"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193853Z:e103550a-be2c-4cf1-aa46-be8f30067434"
+ "WESTUS:20200721T164614Z:18cb5863-ce32-4a9e-895a-689678ea8b23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:52 GMT"
+ "Tue, 21 Jul 2020 16:46:14 GMT"
],
"Expires": [
"-1"
@@ -676,13 +676,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6196d5f0-3bf1-47ad-96b5-5b2ba99cf6e7"
+ "a0e59a3f-af48-44a5-9212-2d91444bfa4d"
],
"If-Match": [
"*"
@@ -694,7 +694,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -708,25 +708,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b22c0298-1360-477e-8ea4-e98bf78157d9"
+ "9fd62748-eb60-42c9-98c3-4ac492553590"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14988"
],
"x-ms-correlation-request-id": [
- "da8b3ba0-2ad0-4c9a-bd0a-3fcf34340d17"
+ "aa0c3835-c060-4195-80c3-9d58beed74c8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193853Z:da8b3ba0-2ad0-4c9a-bd0a-3fcf34340d17"
+ "WESTUS:20200721T164614Z:aa0c3835-c060-4195-80c3-9d58beed74c8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:38:52 GMT"
+ "Tue, 21 Jul 2020 16:46:14 GMT"
],
"Expires": [
"-1"
@@ -738,12 +738,12 @@
],
"Names": {
"": [
- "ps4708",
- "ps2733",
- "ps2105",
- "ps8873",
- "ps9644",
- "ps7358"
+ "ps8499",
+ "ps1273",
+ "ps9370",
+ "ps264",
+ "ps3041",
+ "ps9664"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json
index 411798ad562d..61311621c8b4 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "38813e84-c962-4e2b-a5fe-2a14bc5a3fc8"
+ "1984d2aa-7ef4-4591-874e-50da75ada028"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "954b94af-b8cc-4fa3-bf1e-4b7e20b0fe55"
+ "70ff7ded-6b1c-4640-b5af-f7be3f1faed2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "3d3afd4a-a1d8-45e7-95b9-012f14faf757"
+ "7126bc90-391c-4092-9515-b444ee84727e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193930Z:3d3afd4a-a1d8-45e7-95b9-012f14faf757"
+ "WESTUS:20200721T164657Z:7126bc90-391c-4092-9515-b444ee84727e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:29 GMT"
+ "Tue, 21 Jul 2020 16:46:56 GMT"
],
"Content-Length": [
"34"
@@ -64,13 +64,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3334\",\r\n \"versionQueryName\": \"ps1333\",\r\n \"displayName\": \"ps6510\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6535\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"displayName\": \"ps7953\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0abee327-2930-49c2-9e79-628458d106cd"
+ "efe83986-461c-4209-9e1e-3fc497b57e30"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC/4=\""
+ "\"AAAAAAAAPko=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1bf74ce0-ab20-4aa7-90a3-0e97a0dab6d6"
+ "51a8833a-cac9-4e6f-b1de-25b77444ba79"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,19 +111,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "ef8bd240-6736-4b74-814f-31c75fb6f3c1"
+ "72cff134-3fd4-49f9-86f7-db9164c8804e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193930Z:ef8bd240-6736-4b74-814f-31c75fb6f3c1"
+ "WESTUS:20200721T164657Z:72cff134-3fd4-49f9-86f7-db9164c8804e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:29 GMT"
+ "Tue, 21 Jul 2020 16:46:56 GMT"
],
"Content-Length": [
- "449"
+ "447"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,17 +132,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1333\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3334\",\r\n \"versionHeaderName\": \"ps9561\",\r\n \"displayName\": \"ps6510\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6535\",\r\n \"versionHeaderName\": \"ps9791\",\r\n \"displayName\": \"ps7953\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22c2811c-5866-4480-8a88-c35a14f8d49e"
+ "8ef8d370-f271-490d-97fd-cb315227d3c9"
],
"If-Match": [
"*"
@@ -154,7 +154,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADAI=\""
+ "\"AAAAAAAAPk0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77e66941-1477-46e8-9148-9429e2666b5b"
+ "a3da2b96-cf35-4a76-bb8c-77fec79af501"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -186,19 +186,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "d332eac4-45da-4b57-a8c0-b0b618f2e7ac"
+ "c92d3248-83f0-49f7-bccd-79d20a1f5946"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193930Z:d332eac4-45da-4b57-a8c0-b0b618f2e7ac"
+ "WESTUS:20200721T164658Z:c92d3248-83f0-49f7-bccd-79d20a1f5946"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:30 GMT"
+ "Tue, 21 Jul 2020 16:46:57 GMT"
],
"Content-Length": [
- "450"
+ "448"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -207,17 +207,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9561\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9791\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e44afbd3-c356-456a-a9af-71236f3d7ec0"
+ "e88c6dc9-7bf2-4dbe-bf18-c2f879f1dd26"
],
"Accept-Language": [
"en-US"
@@ -226,7 +226,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,13 +237,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC/4=\""
+ "\"AAAAAAAAPko=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "56735e36-7fdf-486c-ac2d-a6d9f3bb1c6c"
+ "8f2540d1-616d-4ebf-9ac4-455f4c8b55d3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,19 +252,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f74c28a5-98e0-465a-bf88-723e02606875"
+ "62458d69-a2f1-43cc-930c-282af4f5ec62"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193930Z:f74c28a5-98e0-465a-bf88-723e02606875"
+ "WESTUS:20200721T164657Z:62458d69-a2f1-43cc-930c-282af4f5ec62"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:29 GMT"
+ "Tue, 21 Jul 2020 16:46:57 GMT"
],
"Content-Length": [
- "449"
+ "447"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -273,17 +273,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1333\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a9b0d3c-69f5-4360-b624-c0cec0ac92ab"
+ "a108af89-7d7a-4dbe-8b27-8c08adc45558"
],
"Accept-Language": [
"en-US"
@@ -292,7 +292,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -303,13 +303,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADAI=\""
+ "\"AAAAAAAAPk0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86d5821a-7e5f-4dba-be82-3572b13947d8"
+ "7cc12869-eaec-4bc2-a373-85c05abf47ce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -318,19 +318,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "888790d4-1ce3-4b25-a608-94621b83ea9f"
+ "42c631c6-b474-4a13-adc2-3b6df68ba2e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193930Z:888790d4-1ce3-4b25-a608-94621b83ea9f"
+ "WESTUS:20200721T164658Z:42c631c6-b474-4a13-adc2-3b6df68ba2e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:30 GMT"
+ "Tue, 21 Jul 2020 16:46:57 GMT"
],
"Content-Length": [
- "450"
+ "448"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -339,17 +339,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9561\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9791\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps5527\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps861\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f17c46c1-3ec2-4331-bee6-d867d57f453f"
+ "6c6e3be8-fb5e-4c3b-b704-62c5dcab5aba"
],
"Accept-Language": [
"en-US"
@@ -358,13 +358,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "18306"
+ "18305"
]
},
"ResponseHeaders": {
@@ -375,13 +375,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01&asyncId=5eab2973a2ca6012300231e1&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01&asyncId=5f171c02a2ca600fe4c29755&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3a3e3cca-df04-459d-93bc-e5a4afb66af5"
+ "cd2d1573-1ac7-4a40-945e-3f32fadebc41"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -390,16 +390,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "1edb63a9-48d2-4522-a80b-c86aacbe9e38"
+ "c06573db-aa00-43e7-969b-bf5427b091a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193931Z:1edb63a9-48d2-4522-a80b-c86aacbe9e38"
+ "WESTUS:20200721T164658Z:c06573db-aa00-43e7-969b-bf5427b091a0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:39:30 GMT"
+ "Tue, 21 Jul 2020 16:46:57 GMT"
],
"Expires": [
"-1"
@@ -412,8 +412,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01&asyncId=5eab2973a2ca6012300231e1&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjk3M2EyY2E2MDEyMzAwMjMxZTEmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01&asyncId=5f171c02a2ca600fe4c29755&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWMwMmEyY2E2MDBmZTRjMjk3NTUmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -421,7 +421,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,13 +432,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADAU=\""
+ "\"AAAAAAAAPlA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d1cb631b-c3b1-429f-9027-e3cb647045a6"
+ "b20c0d15-3b92-4074-bac6-79da700c4d0b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -447,19 +447,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4f93bda4-91b9-4776-8795-1f04170e9b58"
+ "08c40706-af62-46b6-be2e-a56745600a5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194001Z:4f93bda4-91b9-4776-8795-1f04170e9b58"
+ "WESTUS:20200721T164729Z:08c40706-af62-46b6-be2e-a56745600a5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:00 GMT"
+ "Tue, 21 Jul 2020 16:47:28 GMT"
],
"Content-Length": [
- "1102"
+ "1101"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -468,17 +468,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7573\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9711\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66d86516-8049-4398-95ea-e44565a40e1e"
+ "fa45eafb-1683-4ad0-83c1-ce92eb4c45a2"
],
"Accept-Language": [
"en-US"
@@ -487,7 +487,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,13 +498,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADAU=\""
+ "\"AAAAAAAAPlA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4ce4a274-e8f0-4662-b5ea-741216f59c9d"
+ "5ed07e1d-fef9-4fdb-96db-13e52486efe2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -513,19 +513,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "5a1e66d1-736d-4886-8043-c72891c6d852"
+ "24369b44-5d66-41f4-804b-25a9e538956b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194001Z:5a1e66d1-736d-4886-8043-c72891c6d852"
+ "WESTUS:20200721T164729Z:24369b44-5d66-41f4-804b-25a9e538956b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:00 GMT"
+ "Tue, 21 Jul 2020 16:47:28 GMT"
],
"Content-Length": [
- "1102"
+ "1101"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -534,17 +534,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7573\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9711\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87b9df47-c9be-4370-946a-623961967a59"
+ "727be2f8-6013-4d39-acd1-8ced6c2b702c"
],
"If-Match": [
"*"
@@ -556,7 +556,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -570,7 +570,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0b5b14f4-882c-4d31-a7f1-72ada9498531"
+ "49d5face-825d-4f05-a8b7-7515bcd31e7e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,16 +579,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "a1c892ce-3dda-49a1-8d7c-ff92bb4aab00"
+ "dc34ae0a-30c6-456f-adac-d8f970ce0c0b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194001Z:a1c892ce-3dda-49a1-8d7c-ff92bb4aab00"
+ "WESTUS:20200721T164729Z:dc34ae0a-30c6-456f-adac-d8f970ce0c0b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:01 GMT"
+ "Tue, 21 Jul 2020 16:47:28 GMT"
],
"Expires": [
"-1"
@@ -601,13 +601,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c16e86f-b8bb-4051-9fcd-784667f9adf8"
+ "041541bf-e8e0-4886-9ba8-a36842d63014"
],
"If-Match": [
"*"
@@ -619,7 +619,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -633,7 +633,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "46ffd806-8155-46af-aa4e-52738ed3ec1c"
+ "ecccc1c0-3918-4ccc-9022-ac128682e1b3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,16 +642,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "7e7f7ace-339a-45e7-8e18-8883ac857a0a"
+ "01389231-70c9-4bd0-946e-9f88442c0f63"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194001Z:7e7f7ace-339a-45e7-8e18-8883ac857a0a"
+ "WESTUS:20200721T164729Z:01389231-70c9-4bd0-946e-9f88442c0f63"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:01 GMT"
+ "Tue, 21 Jul 2020 16:47:28 GMT"
],
"Expires": [
"-1"
@@ -663,12 +663,12 @@
],
"Names": {
"": [
- "ps7573",
- "ps5527",
- "ps6510",
- "ps1333",
- "ps3334",
- "ps9561"
+ "ps9711",
+ "ps861",
+ "ps7953",
+ "ps5186",
+ "ps6535",
+ "ps9791"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json
index 89ac51e4e889..3874fcd3a460 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35dc53b7-53af-40a7-9654-c731c7cfe2f2"
+ "6102d34d-6d43-4232-a993-16868972fac8"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1820bc9e-ea86-49fd-99e2-c63cab548e7b"
+ "83dbdf70-3ac0-42b6-aa32-8ac71e5dfa60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "a2652beb-1989-4b28-ae74-a3ec975ea0bf"
+ "15456bac-2e03-4191-b669-9098b8bfe80c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193328Z:a2652beb-1989-4b28-ae74-a3ec975ea0bf"
+ "WESTUS:20200721T164040Z:15456bac-2e03-4191-b669-9098b8bfe80c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:28 GMT"
+ "Tue, 21 Jul 2020 16:40:39 GMT"
],
"Content-Length": [
"34"
@@ -64,13 +64,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9946\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps7747\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\",\r\n \"displayName\": \"ps1509\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ResourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"ps1260\",\r\n \"clientSecret\": \"ps4666\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1840\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6347\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\",\r\n \"displayName\": \"ps164\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ResourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"ps8669\",\r\n \"clientSecret\": \"ps3974\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "947889dc-2dc7-461f-88ae-aad1e5b592d4"
+ "3b6eefd2-c76f-49be-a6b3-a768f3acfa98"
],
"Accept-Language": [
"en-US"
@@ -79,13 +79,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "902"
+ "901"
]
},
"ResponseHeaders": {
@@ -96,13 +96,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp0=\""
+ "\"AAAAAAAAPMg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4abe965d-de78-4d5e-be3b-c81bb1f07ac6"
+ "fcecb029-97b4-4453-824f-818f6978fc3d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,19 +111,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "13bfbb12-3863-4ca7-82b7-d1c817ffc6f4"
+ "c2251aba-aa3b-4cfe-861f-423accb6e649"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193329Z:13bfbb12-3863-4ca7-82b7-d1c817ffc6f4"
+ "WESTUS:20200721T164041Z:c2251aba-aa3b-4cfe-861f-423accb6e649"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:28 GMT"
+ "Tue, 21 Jul 2020 16:40:40 GMT"
],
"Content-Length": [
- "1173"
+ "1174"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,17 +132,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps1509\",\r\n \"description\": \"ps9946\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps7747\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps1260\",\r\n \"clientSecret\": \"ps4666\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps164\",\r\n \"description\": \"ps1840\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6347\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps8669\",\r\n \"clientSecret\": \"ps3974\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5dc4140e-23b2-4037-9585-1c96bd69e981"
+ "7556b48b-d23f-4ba9-8f79-faf4518ea2fd"
],
"Accept-Language": [
"en-US"
@@ -151,7 +151,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,13 +162,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp0=\""
+ "\"AAAAAAAAPMg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "652a8914-709f-41c9-a3e6-5609be6d5900"
+ "8fc8f3ab-0af9-451a-876f-5783d282d2bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,19 +177,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "439f4648-2369-4c3e-907b-1ed817781d9e"
+ "4628713b-f23f-44b4-adea-e0b67a442bd0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193329Z:439f4648-2369-4c3e-907b-1ed817781d9e"
+ "WESTUS:20200721T164041Z:4628713b-f23f-44b4-adea-e0b67a442bd0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:29 GMT"
+ "Tue, 21 Jul 2020 16:40:40 GMT"
],
"Content-Length": [
- "1142"
+ "1143"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,17 +198,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps1509\",\r\n \"description\": \"ps9946\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps7747\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps1260\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps164\",\r\n \"description\": \"ps1840\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6347\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps8669\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b6f6bbc-d599-493f-82bb-ef2f3e3bb512"
+ "c762e4bc-bf3a-4f75-99d7-bf680135c67e"
],
"Accept-Language": [
"en-US"
@@ -217,7 +217,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp4=\""
+ "\"AAAAAAAAPMk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "462b3019-197e-4164-8c18-939fff40c42f"
+ "86e346fa-8917-40dd-9105-08612a1be831"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,19 +243,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5df97a4e-e23b-4599-b191-62993162a56f"
+ "eab6dc79-8c72-412e-80c5-16ae5c0c9a59"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193330Z:5df97a4e-e23b-4599-b191-62993162a56f"
+ "WESTUS:20200721T164042Z:eab6dc79-8c72-412e-80c5-16ae5c0c9a59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:29 GMT"
+ "Tue, 21 Jul 2020 16:40:41 GMT"
],
"Content-Length": [
- "1115"
+ "1118"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,17 +264,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps239\",\r\n \"description\": \"ps3740\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps6684\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5945\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps8607\",\r\n \"description\": \"ps7702\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8424\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps6588\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e841328-bc65-4cb6-a84b-9e9c3e150317"
+ "a9b245e2-92bc-46a1-ae1a-97d4b4069398"
],
"Accept-Language": [
"en-US"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,13 +294,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp4=\""
+ "\"AAAAAAAAPMk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "595608f2-e82f-4884-936e-045c10055103"
+ "aba6a08d-5c63-4436-a085-4443276a067c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,19 +309,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "5ca52f0b-03b2-428d-bf71-bf69f0027da6"
+ "87eb9c67-7000-4801-a95a-8a01f880bef9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193330Z:5ca52f0b-03b2-428d-bf71-bf69f0027da6"
+ "WESTUS:20200721T164042Z:87eb9c67-7000-4801-a95a-8a01f880bef9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:30 GMT"
+ "Tue, 21 Jul 2020 16:40:41 GMT"
],
"Content-Length": [
- "1115"
+ "1118"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps239\",\r\n \"description\": \"ps3740\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps6684\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5945\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps8607\",\r\n \"description\": \"ps7702\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8424\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps6588\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49fdf3fc-c723-473c-83a8-12a597945166"
+ "39f7c0b4-e03f-43d3-b208-3d1be41b3493"
],
"Accept-Language": [
"en-US"
@@ -349,7 +349,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -363,7 +363,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a3acb7e8-3711-4bdb-b9c7-ee3de02968be"
+ "eb5a6763-1359-4084-92d1-b4aa84df65b7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "981a1c05-a579-4ec0-afee-8c4551cf552e"
+ "adf2ad57-6107-468a-9c46-7a1c18ce953c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193331Z:981a1c05-a579-4ec0-afee-8c4551cf552e"
+ "WESTUS:20200721T164043Z:adf2ad57-6107-468a-9c46-7a1c18ce953c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:30 GMT"
+ "Tue, 21 Jul 2020 16:40:42 GMT"
],
"Content-Length": [
"101"
@@ -397,13 +397,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "437d7dbc-909d-49b2-bce3-81b125511a58"
+ "54044e9c-d926-4007-ade1-abfaa02f4744"
],
"Accept-Language": [
"en-US"
@@ -412,7 +412,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,13 +423,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp0=\""
+ "\"AAAAAAAAPMg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "526dd679-01a1-49ae-8863-361c1c890a90"
+ "f9babbaa-30c8-480a-aaa8-0f85a62a0e24"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +438,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "049db7b4-2261-49a6-9024-a8a2baccc03d"
+ "5202aaf8-2055-4e31-9e86-5b45a4f5f11c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193329Z:049db7b4-2261-49a6-9024-a8a2baccc03d"
+ "WESTUS:20200721T164041Z:5202aaf8-2055-4e31-9e86-5b45a4f5f11c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:29 GMT"
+ "Tue, 21 Jul 2020 16:40:40 GMT"
],
"Content-Length": [
"25"
@@ -459,17 +459,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps4666\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps3974\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70315668-4451-4eb2-9784-6e19e3fb7214"
+ "2796884b-4365-4d88-8258-57558f736e82"
],
"Accept-Language": [
"en-US"
@@ -478,7 +478,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,13 +489,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp4=\""
+ "\"AAAAAAAAPMk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "30b8edce-25a0-4c5d-8729-089488ac23bc"
+ "3d09201d-f6ef-47b5-8018-f18fde222cca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,19 +504,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "037cb9c9-56dd-4911-a996-eb8e389a363b"
+ "05529e2b-85de-488f-9a87-be74b50ef968"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193330Z:037cb9c9-56dd-4911-a996-eb8e389a363b"
+ "WESTUS:20200721T164042Z:05529e2b-85de-488f-9a87-be74b50ef968"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:30 GMT"
+ "Tue, 21 Jul 2020 16:40:41 GMT"
],
"Content-Length": [
- "24"
+ "25"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,17 +525,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps213\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps7982\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3740\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps6684\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps239\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ClientCredentials\"\r\n ],\r\n \"clientId\": \"ps5945\",\r\n \"clientSecret\": \"ps213\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7702\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8424\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps8607\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ClientCredentials\"\r\n ],\r\n \"clientId\": \"ps6588\",\r\n \"clientSecret\": \"ps7982\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88634701-04f2-4f89-8590-a8c3294c540a"
+ "2bc731a5-594b-4d91-ac13-cb587dd2bc12"
],
"If-Match": [
"*"
@@ -547,13 +547,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "794"
+ "796"
]
},
"ResponseHeaders": {
@@ -567,7 +567,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "82605b3d-d0ee-4c43-93ff-a3e1ba472e9b"
+ "b11c539b-a6dc-4aa4-9fa9-abf722252dd0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,16 +576,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "5fe56751-7f7a-4003-bf89-a046f1fac61f"
+ "288e470d-c754-4738-9c13-2ac485cf972d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193330Z:5fe56751-7f7a-4003-bf89-a046f1fac61f"
+ "WESTUS:20200721T164042Z:288e470d-c754-4738-9c13-2ac485cf972d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:29 GMT"
+ "Tue, 21 Jul 2020 16:40:41 GMT"
],
"Expires": [
"-1"
@@ -595,13 +595,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b03d084d-550f-442a-9f5b-a2fed6e9b797"
+ "3880a82a-3fff-4672-9446-f7315e708099"
],
"If-Match": [
"*"
@@ -613,7 +613,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -627,7 +627,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "99462017-b38f-4bf9-aa30-157a64ba7910"
+ "c78d2b1e-bcf8-4566-9a3a-7591a31670fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -636,16 +636,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b5e4f626-424a-4f0f-ad45-ae9e7c07e9cd"
+ "f78dd0e3-dacf-4329-a8a5-d57602ddcf3f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193331Z:b5e4f626-424a-4f0f-ad45-ae9e7c07e9cd"
+ "WESTUS:20200721T164042Z:f78dd0e3-dacf-4329-a8a5-d57602ddcf3f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:30 GMT"
+ "Tue, 21 Jul 2020 16:40:42 GMT"
],
"Expires": [
"-1"
@@ -660,19 +660,19 @@
],
"Names": {
"": [
- "ps156",
- "ps1509",
- "ps7747",
- "ps1260",
- "ps9946",
- "ps4666",
- "ps9473",
- "ps5925",
- "ps239",
- "ps6684",
- "ps5945",
- "ps3740",
- "ps213"
+ "ps6087",
+ "ps164",
+ "ps6347",
+ "ps8669",
+ "ps1840",
+ "ps3974",
+ "ps4974",
+ "ps3959",
+ "ps8607",
+ "ps8424",
+ "ps6588",
+ "ps7702",
+ "ps7982"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json
index 874f9cffeee4..f7ec11a51307 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps1762\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps5083\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "421b11c0-db4e-4a83-8760-d37b50b92529"
+ "248d0814-8026-4fe8-a6d4-7b9c215d4b01"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACvg=\""
+ "\"AAAAAAAAPSI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2cb7d3e9-a210-459f-9873-aca18010fd9f"
+ "db46d580-8c01-45c7-9095-b903dcb2d9cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "a47f3213-4a16-4228-bb8f-d0c68a35c723"
+ "4be5c7dd-0752-40f0-9769-e10c059ad3c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193422Z:a47f3213-4a16-4228-bb8f-d0c68a35c723"
+ "WESTUS:20200721T164133Z:4be5c7dd-0752-40f0-9769-e10c059ad3c0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:22 GMT"
+ "Tue, 21 Jul 2020 16:41:33 GMT"
],
"Content-Length": [
"824"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps1762\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps5083\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps5707\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7950\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "508320e8-eaec-4de7-b1da-1cd8dfb46b81"
+ "74200fab-8541-45ba-a477-f05128437f58"
],
"If-Match": [
"*"
@@ -91,7 +91,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -111,25 +111,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "813ce8c0-ae03-4909-8e8c-00e924439afd"
+ "b61bf370-0e9f-4987-a85b-21dcdbede47c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "bb717706-bceb-4556-a3a8-7549ba0d220d"
+ "1e4c4a72-8471-4f39-ab24-0a309d12892e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193423Z:bb717706-bceb-4556-a3a8-7549ba0d220d"
+ "WESTUS:20200721T164134Z:1e4c4a72-8471-4f39-ab24-0a309d12892e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:23 GMT"
+ "Tue, 21 Jul 2020 16:41:34 GMT"
],
"Expires": [
"-1"
@@ -139,13 +139,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2e755eb-caf7-4a73-ae0c-7f7b40bf5320"
+ "82d238cc-9959-4b90-807a-c93cdfbb9ad4"
],
"If-Match": [
"*"
@@ -157,7 +157,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -177,25 +177,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "26b1fdaa-c502-4126-8476-b399a5be02d8"
+ "f793d881-033e-49bd-a824-ff1b6ba09c9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1194"
],
"x-ms-correlation-request-id": [
- "b2078e38-da1e-40eb-babd-24ca082226fb"
+ "622ac608-29b9-4e93-83c5-1145e2e0d919"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193424Z:b2078e38-da1e-40eb-babd-24ca082226fb"
+ "WESTUS:20200721T164136Z:622ac608-29b9-4e93-83c5-1145e2e0d919"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:24 GMT"
+ "Tue, 21 Jul 2020 16:41:36 GMT"
],
"Expires": [
"-1"
@@ -205,13 +205,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f32f16f6-3d37-4023-b44b-c0d60912de2b"
+ "c3445238-63da-4e1d-bf35-b84ed8dab7af"
],
"Accept-Language": [
"en-US"
@@ -220,7 +220,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,31 +231,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACvo=\""
+ "\"AAAAAAAAPSQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b28257fc-3daa-43e4-88ad-7592fc41dcfe"
+ "d1e5aed2-0d51-4b8c-b4bc-0979cd6b5ab4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11992"
],
"x-ms-correlation-request-id": [
- "ad783f3b-1101-4823-84e2-7739b833d89b"
+ "9a17b563-91c1-4d4d-8aec-7c569afce0f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193423Z:ad783f3b-1101-4823-84e2-7739b833d89b"
+ "WESTUS:20200721T164134Z:9a17b563-91c1-4d4d-8aec-7c569afce0f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:23 GMT"
+ "Tue, 21 Jul 2020 16:41:34 GMT"
],
"Content-Length": [
"824"
@@ -267,17 +267,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3379565c-852c-440b-9008-09e2210c23bc"
+ "34eaac91-1a1c-42fb-8689-ff403fdd68ea"
],
"Accept-Language": [
"en-US"
@@ -286,7 +286,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,31 +297,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACvo=\""
+ "\"AAAAAAAAPSQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ff830cd6-130a-4e23-ad19-c2586d2235bb"
+ "8492baff-167a-4869-b6bd-fb19f0080ebe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11990"
],
"x-ms-correlation-request-id": [
- "94eefc7b-2a7b-41f6-be93-43e0f951db69"
+ "17f6bced-c6df-4dc9-ac6b-2944d5e1acbb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193424Z:94eefc7b-2a7b-41f6-be93-43e0f951db69"
+ "WESTUS:20200721T164135Z:17f6bced-c6df-4dc9-ac6b-2944d5e1acbb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:23 GMT"
+ "Tue, 21 Jul 2020 16:41:35 GMT"
],
"Content-Length": [
"824"
@@ -333,17 +333,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c017e40-1d32-4dda-9cab-4348ec5fe5b6"
+ "399f174a-e66c-4924-a9bd-15269c31b54c"
],
"Accept-Language": [
"en-US"
@@ -352,7 +352,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -363,31 +363,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACv0=\""
+ "\"AAAAAAAAPSc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f61f6c58-282b-4eab-adea-d67bed389389"
+ "b09e55d6-9d8a-4f5d-9b51-8e0d3a35770d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11989"
],
"x-ms-correlation-request-id": [
- "78e774e5-52f0-4e60-96cc-b23706a64fb5"
+ "18468b8e-0e1e-4710-924f-b7f1645786eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193424Z:78e774e5-52f0-4e60-96cc-b23706a64fb5"
+ "WESTUS:20200721T164136Z:18468b8e-0e1e-4710-924f-b7f1645786eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:24 GMT"
+ "Tue, 21 Jul 2020 16:41:36 GMT"
],
"Content-Length": [
"953"
@@ -399,17 +399,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "abca2059-82db-4e1d-ac21-96d43549cfb2"
+ "2e43de81-3258-4c7d-b5f3-d8f6df652375"
],
"Accept-Language": [
"en-US"
@@ -418,7 +418,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,25 +432,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "afa24590-6cc8-4e39-a39f-8c1b6c8ba218"
+ "d8406982-ad08-4c8a-ab44-a08f6d333f58"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11988"
],
"x-ms-correlation-request-id": [
- "e5368178-0886-4b87-a968-a6c28e023981"
+ "a1ad993d-229d-4fe2-96a7-824c891589f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193425Z:e5368178-0886-4b87-a968-a6c28e023981"
+ "WESTUS:20200721T164136Z:a1ad993d-229d-4fe2-96a7-824c891589f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:24 GMT"
+ "Tue, 21 Jul 2020 16:41:36 GMT"
],
"Content-Length": [
"83"
@@ -472,7 +472,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66119729-cfb7-467f-bd1e-be849a6cb5e2"
+ "1953e438-1647-4443-9218-e21a2d2f8288"
],
"Accept-Language": [
"en-US"
@@ -481,7 +481,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,25 +495,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3377aa2b-44b1-4f5c-9d5e-c52b053fe337"
+ "35848623-7af2-4577-bab0-320b5d688957"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11991"
],
"x-ms-correlation-request-id": [
- "d5bd790a-2149-4245-b341-94ef081711c7"
+ "83ed4586-19ef-4098-8fef-0008d27bd5eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193424Z:d5bd790a-2149-4245-b341-94ef081711c7"
+ "WESTUS:20200721T164135Z:83ed4586-19ef-4098-8fef-0008d27bd5eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:23 GMT"
+ "Tue, 21 Jul 2020 16:41:35 GMT"
],
"Content-Length": [
"1004"
@@ -525,17 +525,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb4382fa-fcf9-46a6-b382-5cd5e16eb9f4"
+ "1db40c1c-9fed-4c59-bc54-02407527e960"
],
"If-Match": [
"*"
@@ -547,7 +547,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -561,25 +561,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a2fa0a6a-fec3-4c7d-88c1-624fcf5acdf5"
+ "d1cb456c-1084-4be4-9fb3-7d6e301c4edd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "8971b6e9-0d1e-4f6d-88f4-968b6327e5b9"
+ "44073233-5657-4612-a699-da72c7db2636"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193424Z:8971b6e9-0d1e-4f6d-88f4-968b6327e5b9"
+ "WESTUS:20200721T164136Z:44073233-5657-4612-a699-da72c7db2636"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:24 GMT"
+ "Tue, 21 Jul 2020 16:41:36 GMT"
],
"Expires": [
"-1"
@@ -594,10 +594,10 @@
],
"Names": {
"": [
- "ps6848",
- "ps2965",
- "ps1762",
- "ps5707"
+ "ps3138",
+ "ps9538",
+ "ps5083",
+ "ps7950"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json
index 91f177a53637..0971f43248c1 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ff38c3e-0e7c-49ee-b51b-f4d2d9e44a37"
+ "9ef8430b-86e8-4ed7-adfb-f91df70137aa"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6b752baf-d40c-42f2-8d22-fe8b69ccd985"
+ "3900b5a9-e65e-49af-8cc0-0870d0028e24"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "aaeb2857-34f8-4948-a6ed-77c32bf36e5d"
+ "c1ebc8c0-3100-4eae-abe2-a3d6ca9c09ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193705Z:aaeb2857-34f8-4948-a6ed-77c32bf36e5d"
+ "WESTUS:20200721T164416Z:c1ebc8c0-3100-4eae-abe2-a3d6ca9c09ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:04 GMT"
+ "Tue, 21 Jul 2020 16:44:15 GMT"
],
"Content-Length": [
"34"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3bd3413-6173-4765-a19d-a38ad0fe1ee1"
+ "9ba56717-96b0-4248-b023-9f2b81d120b1"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "041e963d-ca25-4573-87ea-4c72ba97aeed"
+ "8bafee28-4164-498f-924d-50de5dd022a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -102,19 +102,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "fbfdafad-8925-4aef-aec5-9ec223cf553c"
+ "6af70c5b-0033-4e62-ab4d-70263767d27c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193706Z:fbfdafad-8925-4aef-aec5-9ec223cf553c"
+ "WESTUS:20200721T164419Z:6af70c5b-0033-4e62-ab4d-70263767d27c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:06 GMT"
+ "Tue, 21 Jul 2020 16:44:18 GMT"
],
"Content-Length": [
- "1121"
+ "1122"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,18 +123,18 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps9583\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
//[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42950c91-a658-4f2d-9d6f-db71dd5984bd"
+ "490fcba1-7b50-4cb6-bba8-4260f240df43"
],
"Accept-Language": [
"en-US"
@@ -143,7 +143,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -160,13 +160,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC3w=\""
+ "\"AAAAAAAAPcI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8d42f87f-ac1a-43c5-b967-0c29bd23665e"
+ "d66e5518-f89e-4241-94de-0741849abe8c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -175,16 +175,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "4bb7a4a3-9504-4d5d-a282-7d4d290e6dca"
+ "8b4b3d49-8fbc-485e-be10-08086f068747"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193705Z:4bb7a4a3-9504-4d5d-a282-7d4d290e6dca"
+ "WESTUS:20200721T164416Z:8b4b3d49-8fbc-485e-be10-08086f068747"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:05 GMT"
+ "Tue, 21 Jul 2020 16:44:15 GMT"
],
"Content-Length": [
"433"
@@ -196,17 +196,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps7034\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8062\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6796342-ae26-4e68-8c78-ec5cf7b36f32"
+ "d03b8efe-4267-4d3c-82d5-33a21e52be0a"
],
"Accept-Language": [
"en-US"
@@ -215,7 +215,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -226,13 +226,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC3w=\""
+ "\"AAAAAAAAPcI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "914a62f3-70ea-4ce7-a9ad-a9d080f1fd84"
+ "d62e3ef4-cf57-405a-ab1e-1515fb2baac0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -241,16 +241,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "9447cbce-cbd5-463a-b532-34136a6d6b75"
+ "58964ed4-45f2-44f6-a287-aa8737f10bda"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193705Z:9447cbce-cbd5-463a-b532-34136a6d6b75"
+ "WESTUS:20200721T164417Z:58964ed4-45f2-44f6-a287-aa8737f10bda"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:05 GMT"
+ "Tue, 21 Jul 2020 16:44:16 GMT"
],
"Content-Length": [
"433"
@@ -262,17 +262,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps7034\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8062\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97b7578d-ae3e-4397-a437-47b4ca99fb81"
+ "2a73fdfc-06cf-44da-8000-e613f4aecf12"
],
"Accept-Language": [
"en-US"
@@ -281,7 +281,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -295,7 +295,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7590557-87f1-4a97-8177-d00697869060"
+ "ca3bf6f1-d75d-4406-8584-f41041d96387"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -304,16 +304,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "07cd45ce-587e-44c1-b6e2-5d561c50f435"
+ "1da66f4d-06cf-4d5f-bd41-2fa194f64c3f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193708Z:07cd45ce-587e-44c1-b6e2-5d561c50f435"
+ "WESTUS:20200721T164420Z:1da66f4d-06cf-4d5f-bd41-2fa194f64c3f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:07 GMT"
+ "Tue, 21 Jul 2020 16:44:19 GMT"
],
"Content-Length": [
"87"
@@ -329,13 +329,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps3137\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps8854\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3130a30-bee4-4bb7-a6be-43e305ed273f"
+ "ad24e14a-2d40-4f5b-892f-b68b74de70c0"
],
"Accept-Language": [
"en-US"
@@ -344,13 +344,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "675"
+ "676"
]
},
"ResponseHeaders": {
@@ -361,13 +361,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC38=\""
+ "\"AAAAAAAAPcU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ee62619-ab92-4a80-a212-9a150d5d1dca"
+ "40f754fc-439f-4f4c-925d-a9bc7241640c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -376,19 +376,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "be38fa47-f99e-4569-94c2-8da959a7297a"
+ "8900320b-f905-4630-b598-9316a4d460d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193706Z:be38fa47-f99e-4569-94c2-8da959a7297a"
+ "WESTUS:20200721T164418Z:8900320b-f905-4630-b598-9316a4d460d1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:06 GMT"
+ "Tue, 21 Jul 2020 16:44:17 GMT"
],
"Content-Length": [
- "969"
+ "970"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,17 +397,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps3137\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps8854\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9583\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9623\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10c25c1f-ec7b-4e66-b0f7-9ece9bb0a3d9"
+ "8eb8b252-d86c-4aa0-9cf1-26e57d4f05b2"
],
"If-Match": [
"*"
@@ -419,7 +419,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -439,7 +439,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b193b63-f4d1-4c91-8b3c-8a17d4db42ec"
+ "e7526062-ec95-4d08-834e-513b29bacb8e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -448,16 +448,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "75daf591-c804-459c-b45b-b0364b93b116"
+ "69bf85e7-ca25-4011-8cff-5ef094cedbf1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193706Z:75daf591-c804-459c-b45b-b0364b93b116"
+ "WESTUS:20200721T164418Z:69bf85e7-ca25-4011-8cff-5ef094cedbf1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:06 GMT"
+ "Tue, 21 Jul 2020 16:44:17 GMT"
],
"Expires": [
"-1"
@@ -467,13 +467,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "85ff343e-2c81-457a-91e9-50004a507846"
+ "6e25a7d0-93d8-4471-9767-5c8ac072beef"
],
"Accept-Language": [
"en-US"
@@ -482,7 +482,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -493,13 +493,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC4E=\""
+ "\"AAAAAAAAPcc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "372131d7-1c50-4047-ae24-e844a1dab20e"
+ "a94a6075-ce88-471d-9a70-ece18511fff6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -508,19 +508,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5d4e3d7c-cc46-48fd-b572-91d73afdbfe5"
+ "454d5cd6-bd7f-43a3-9e59-632070be234b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193706Z:5d4e3d7c-cc46-48fd-b572-91d73afdbfe5"
+ "WESTUS:20200721T164418Z:454d5cd6-bd7f-43a3-9e59-632070be234b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:06 GMT"
+ "Tue, 21 Jul 2020 16:44:18 GMT"
],
"Content-Length": [
- "969"
+ "970"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -529,17 +529,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps9583\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5d4f28a-d1a3-407e-bb8d-dba290d886b7"
+ "daf5efde-c667-494b-8874-aae412077ef9"
],
"Accept-Language": [
"en-US"
@@ -548,7 +548,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -559,13 +559,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC4E=\""
+ "\"AAAAAAAAPcc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c7136e9e-ff7a-4d12-8e0e-b11418242cef"
+ "fc553e34-2a4d-4d16-90ca-7076b28815cd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -574,19 +574,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "21b2d13c-5248-4c7e-b766-a6264af88eb2"
+ "2c25b3f7-e17a-4340-a471-3b112a381d18"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193706Z:21b2d13c-5248-4c7e-b766-a6264af88eb2"
+ "WESTUS:20200721T164419Z:2c25b3f7-e17a-4340-a471-3b112a381d18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:06 GMT"
+ "Tue, 21 Jul 2020 16:44:18 GMT"
],
"Content-Length": [
- "969"
+ "970"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -595,17 +595,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps9583\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe854558-a0fd-4666-9a63-c4bbd07e055b"
+ "16232167-f770-4308-a482-23ffe29acfe8"
],
"Accept-Language": [
"en-US"
@@ -614,7 +614,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -628,7 +628,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "245f93b4-a597-4c59-b844-aee82faae810"
+ "528f4ab7-3dda-4330-a33d-4cdc49749b6f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -637,16 +637,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "3fa2450a-96f4-4ca4-b83f-750b3be727f7"
+ "138253c6-c066-4f3b-aea3-255f161c5cba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193707Z:3fa2450a-96f4-4ca4-b83f-750b3be727f7"
+ "WESTUS:20200721T164419Z:138253c6-c066-4f3b-aea3-255f161c5cba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:07 GMT"
+ "Tue, 21 Jul 2020 16:44:19 GMT"
],
"Content-Length": [
"83"
@@ -662,13 +662,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2a7efda-c6a3-4ee2-a5fd-de48e0151675"
+ "b92c13d3-9b0d-4ec6-9fc0-7f9c8d286504"
],
"If-Match": [
"*"
@@ -680,7 +680,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -694,7 +694,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d3e2612-108f-49b5-97ad-809fd1b892ce"
+ "27aa40dc-e2f5-4000-b218-dcfbbe7495da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -703,16 +703,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "1024db8f-5aaf-4c6e-927b-1d99a986f04c"
+ "3330879d-0b9d-41d3-b482-4b1ce9abf7b3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193707Z:1024db8f-5aaf-4c6e-927b-1d99a986f04c"
+ "WESTUS:20200721T164419Z:3330879d-0b9d-41d3-b482-4b1ce9abf7b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:07 GMT"
+ "Tue, 21 Jul 2020 16:44:18 GMT"
],
"Expires": [
"-1"
@@ -725,13 +725,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "238a0d4b-d5bd-415a-a867-ead2e7bd430a"
+ "4043a6c0-46ee-48fe-914b-112f7e451a32"
],
"If-Match": [
"*"
@@ -743,7 +743,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -757,7 +757,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10f64e11-f0dc-4ef4-a97b-30fcd35883ac"
+ "70c75e60-f0db-464b-b51e-b67644c43f2e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -766,16 +766,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "0fd8a2f2-a450-479a-bd28-757c22f23176"
+ "30c25073-5721-42f1-8565-634778245dd0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193707Z:0fd8a2f2-a450-479a-bd28-757c22f23176"
+ "WESTUS:20200721T164420Z:30c25073-5721-42f1-8565-634778245dd0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:37:07 GMT"
+ "Tue, 21 Jul 2020 16:44:19 GMT"
],
"Expires": [
"-1"
@@ -790,11 +790,11 @@
],
"Names": {
"": [
- "ps7034",
- "ps1093",
- "ps925",
- "ps3137",
- "ps9583"
+ "ps8062",
+ "ps2285",
+ "ps7257",
+ "ps8854",
+ "ps9623"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json
index ecdbc11a68c8..51052c6574d8 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0a28612-31df-4829-a3cc-248a81cca004"
+ "2da7ef94-5387-4f13-8afa-9acfe724bc3a"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87e3bcd3-147d-4171-8511-b7554223f79c"
+ "1cd6c95b-bd82-4775-a689-bf6146f9ac75"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "43ec6261-2b5a-4e60-b294-12386b84eae4"
+ "746f0ac8-607c-4cc4-8e27-d6ee7400ddcc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193222Z:43ec6261-2b5a-4e60-b294-12386b84eae4"
+ "WESTUS:20200721T163905Z:746f0ac8-607c-4cc4-8e27-d6ee7400ddcc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:21 GMT"
+ "Tue, 21 Jul 2020 16:39:04 GMT"
],
"Content-Length": [
"34"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1cb9d795-a06e-4d05-8af8-ceaa9b42d540"
+ "96b77fc2-a748-4b78-a223-a9bf268dcc77"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03fc53c1-ad2e-47df-9dae-4453a39b7caf"
+ "f2327643-580e-45f6-9a8a-834de0f9eaa1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -102,16 +102,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "6e238793-0c4a-4406-a150-929b464e7b50"
+ "070832fc-15e2-4fce-a0d2-d5db064bd444"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193223Z:6e238793-0c4a-4406-a150-929b464e7b50"
+ "WESTUS:20200721T163907Z:070832fc-15e2-4fce-a0d2-d5db064bd444"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:23 GMT"
+ "Tue, 21 Jul 2020 16:39:07 GMT"
],
"Content-Length": [
"437"
@@ -123,17 +123,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7165\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a639c976-8942-4815-b038-8b340940622a"
+ "257dffe0-70b4-4fcb-8884-fbf4ae2ed416"
],
"Accept-Language": [
"en-US"
@@ -142,7 +142,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,13 +159,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjk=\""
+ "\"AAAAAAAAPFE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "912b0925-87e6-46bd-80b6-8dc7abe86c49"
+ "16504cc4-0bdb-4408-b844-2c182a245e56"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -174,16 +174,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "225a4c18-1249-4310-a3e8-0d4e2d8d2cbb"
+ "855575df-2b60-41c7-ac6d-ec3a6ecd3b70"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193222Z:225a4c18-1249-4310-a3e8-0d4e2d8d2cbb"
+ "WESTUS:20200721T163905Z:855575df-2b60-41c7-ac6d-ec3a6ecd3b70"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:22 GMT"
+ "Tue, 21 Jul 2020 16:39:05 GMT"
],
"Content-Length": [
"361"
@@ -195,7 +195,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -205,7 +205,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80e98f34-c847-45e5-aafb-e404e795b880"
+ "75dce3b4-6a4f-43b7-9b5d-159f86e2a142"
],
"Accept-Language": [
"en-US"
@@ -214,7 +214,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,13 +225,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjk=\""
+ "\"AAAAAAAAPFE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df0343be-2cde-4950-b64f-b0cffc8413b0"
+ "2877d4b6-be11-4eca-b5dc-4b30e4d4fccd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "7dad7091-457b-47ad-90a9-7ddc99e340b0"
+ "ee6e072f-b769-4427-9c8c-e264a690337b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193222Z:7dad7091-457b-47ad-90a9-7ddc99e340b0"
+ "WESTUS:20200721T163906Z:ee6e072f-b769-4427-9c8c-e264a690337b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:22 GMT"
+ "Tue, 21 Jul 2020 16:39:05 GMT"
],
"Content-Length": [
"361"
@@ -261,7 +261,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -271,7 +271,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "284564f7-dfea-4f4a-9d70-7d36aaa65f0c"
+ "bff9140e-f361-4c12-8584-24d93538a9d0"
],
"Accept-Language": [
"en-US"
@@ -280,7 +280,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,13 +291,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjk=\""
+ "\"AAAAAAAAPFE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8052b84d-5097-4a34-8fd2-43b3b5d19642"
+ "6720d2a1-94d7-4d20-97df-57675fbb610c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +306,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "0bbe173a-c02a-4feb-b876-555703977f1f"
+ "a76720ac-7958-492b-84c9-210dd5a75307"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193223Z:0bbe173a-c02a-4feb-b876-555703977f1f"
+ "WESTUS:20200721T163906Z:a76720ac-7958-492b-84c9-210dd5a75307"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:22 GMT"
+ "Tue, 21 Jul 2020 16:39:05 GMT"
],
"Content-Length": [
"361"
@@ -327,7 +327,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -337,7 +337,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cfbe2e8c-eabf-4ea2-8b43-8d4d51a3981d"
+ "64e2b8fb-4787-40ca-8e4a-990ac5323b20"
],
"Accept-Language": [
"en-US"
@@ -346,7 +346,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjw=\""
+ "\"AAAAAAAAPFQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d00da3a2-f826-4388-88dc-f3d77da9dee7"
+ "e8bdf8ba-53f5-44c9-8c2b-f7d8aba93366"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "c2cdc3b3-f599-4f11-9d4b-49dea83cc370"
+ "667ef46d-91e1-4991-a9cf-fcc77d9918ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193223Z:c2cdc3b3-f599-4f11-9d4b-49dea83cc370"
+ "WESTUS:20200721T163907Z:667ef46d-91e1-4991-a9cf-fcc77d9918ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:23 GMT"
+ "Tue, 21 Jul 2020 16:39:06 GMT"
],
"Content-Length": [
"361"
@@ -393,7 +393,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7165\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -403,7 +403,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8243510f-5982-45f1-baf6-a9c07529a7b5"
+ "189b74fc-6774-4535-b14e-f5b694dea036"
],
"Accept-Language": [
"en-US"
@@ -412,7 +412,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6bd56760-f060-4442-9b4d-097b7b42bb28"
+ "efebb1ab-149e-4a84-a1c9-e0a5791efa82"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +435,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "be1c7f31-353a-4dad-9388-b2cf897cf1e1"
+ "673403ca-2e7e-4ad7-b309-76e89f4e5fda"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193224Z:be1c7f31-353a-4dad-9388-b2cf897cf1e1"
+ "WESTUS:20200721T163908Z:673403ca-2e7e-4ad7-b309-76e89f4e5fda"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:24 GMT"
+ "Tue, 21 Jul 2020 16:39:07 GMT"
],
"Content-Length": [
"81"
@@ -463,10 +463,10 @@
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7165\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a74d3153-e499-46ec-a9e0-389620eed701"
+ "ad61bd71-a39a-45cf-b0de-a4c19c9df5ca"
],
"If-Match": [
"*"
@@ -478,7 +478,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -498,7 +498,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "941b41a6-2f32-454a-8f45-4268f4ab435a"
+ "f52aa3f4-ba14-4edc-b71d-c90a0e4260c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,16 +507,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "d334cc17-61a6-47a4-8843-a3f08e01a136"
+ "ed2676ec-2f81-4a16-8a16-8b222a2b98bd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193223Z:d334cc17-61a6-47a4-8843-a3f08e01a136"
+ "WESTUS:20200721T163907Z:ed2676ec-2f81-4a16-8a16-8b222a2b98bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:23 GMT"
+ "Tue, 21 Jul 2020 16:39:06 GMT"
],
"Expires": [
"-1"
@@ -532,7 +532,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07064dd1-9d3e-45a4-9036-cb799c0e74d6"
+ "ed7185b3-dcee-47d0-bc5e-7a2a95f933ab"
],
"If-Match": [
"*"
@@ -544,7 +544,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -558,7 +558,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8c08a2ac-db1b-45c5-ac29-a9d1e3c1e846"
+ "9c8a97a8-ff09-4b18-9e6a-501547cfafde"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -567,16 +567,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "a41c8350-0123-4805-a767-59c64295d560"
+ "9dc28fbd-6dc8-4921-8126-5bd259372e32"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193224Z:a41c8350-0123-4805-a767-59c64295d560"
+ "WESTUS:20200721T163907Z:9dc28fbd-6dc8-4921-8126-5bd259372e32"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:23 GMT"
+ "Tue, 21 Jul 2020 16:39:07 GMT"
],
"Expires": [
"-1"
@@ -595,7 +595,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36c034c8-52bb-4c31-9ae5-e048fc05ce65"
+ "0cc178c0-44eb-422b-a25b-6bd0e2e5cc69"
],
"Accept-Language": [
"en-US"
@@ -604,7 +604,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -618,7 +618,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "09d6f17c-2a6c-4f54-8b5b-fec9a846a3f9"
+ "7fdb4d4a-05ce-4be0-ba01-7c0bd63d2f46"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -627,16 +627,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "e64290b6-703b-4e9e-bd04-9642816c09e6"
+ "b1c6ca25-14e4-44f6-a186-f19ab4fb0c4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193224Z:e64290b6-703b-4e9e-bd04-9642816c09e6"
+ "WESTUS:20200721T163908Z:b1c6ca25-14e4-44f6-a186-f19ab4fb0c4c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:24 GMT"
+ "Tue, 21 Jul 2020 16:39:07 GMT"
],
"Content-Length": [
"511"
@@ -648,17 +648,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27c6a2ca601230023147\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab27c6a2ca601230023147\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5eab27c6a2ca601230023148\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a29a2ca600fe4c296a8\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171a29a2ca600fe4c296a8\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5f171a29a2ca600fe4c296a9\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27c6a2ca601230023147?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyN2M2YTJjYTYwMTIzMDAyMzE0Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a29a2ca600fe4c296a8?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYTI5YTJjYTYwMGZlNGMyOTZhOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e442a608-1c78-480a-a209-599742884c3e"
+ "051c0777-38ee-49b4-921f-c6948f2913d1"
],
"If-Match": [
"*"
@@ -670,7 +670,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -684,7 +684,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "51541f66-d6e6-4b12-b889-5034055c29f6"
+ "438ced38-d3e5-40ee-be9a-3527308aac4f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -693,16 +693,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "e9c3e890-e189-447f-8e1a-0484fdfa097d"
+ "5743500c-0c56-4e94-8e2e-f4bf7a1ab16d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193226Z:e9c3e890-e189-447f-8e1a-0484fdfa097d"
+ "WESTUS:20200721T163908Z:5743500c-0c56-4e94-8e2e-f4bf7a1ab16d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:25 GMT"
+ "Tue, 21 Jul 2020 16:39:08 GMT"
],
"Expires": [
"-1"
@@ -717,8 +717,8 @@
],
"Names": {
"": [
- "ps3955",
- "ps7165"
+ "ps2632",
+ "ps7562"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json
index 1f01e3a2509b..85607d150498 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1522fb71-521c-4fa0-a4e0-ff0802453349"
+ "4ad9236e-a6fb-475d-bbe1-c5a5fe978a95"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,25 +30,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e6646b0-2e1c-4dd2-9433-b5bd39facc76"
+ "3d53de7a-0b10-41dd-a2f8-fbc9fa1ee5cd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "d4681d72-0385-4f11-9180-3368b0a178ed"
+ "7b7b0e0f-b0af-4b09-9a71-e29cb5db37f3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193429Z:d4681d72-0385-4f11-9180-3368b0a178ed"
+ "WESTUS:20200721T164139Z:7b7b0e0f-b0af-4b09-9a71-e29cb5db37f3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:29 GMT"
+ "Tue, 21 Jul 2020 16:41:39 GMT"
],
"Content-Length": [
"34"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3718463-aee9-42e7-b00f-51be8f1905f7"
+ "b445d75d-46fb-4e94-b6be-37f0fd3de65f"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,25 +93,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f38e47be-673d-428c-b11a-96a3f2c51da3"
+ "e2a65da3-ed1c-4a4e-a7f2-b0880164f616"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "77c79f2b-0898-45cb-8af2-fa4e25a189a1"
+ "1c014b8b-6757-4df1-8051-fd6b34b84c51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193432Z:77c79f2b-0898-45cb-8af2-fa4e25a189a1"
+ "WESTUS:20200721T164142Z:1c014b8b-6757-4df1-8051-fd6b34b84c51"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:32 GMT"
+ "Tue, 21 Jul 2020 16:41:42 GMT"
],
"Content-Length": [
"513"
@@ -123,18 +123,18 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
//[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54f1aaec-7840-4c05-8e9e-207bbdf0d45d"
+ "14fe5e66-e7da-4587-acd2-83b83ace16a5"
],
"Accept-Language": [
"en-US"
@@ -143,7 +143,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -160,31 +160,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACwQ=\""
+ "\"AAAAAAAAPS0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "746fce0f-913c-47df-b6ec-9e100254922f"
+ "4db7e046-aa06-4e72-90fd-d12590ecbf0b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "d4283372-4dcb-456c-9c97-1c0cf9abac93"
+ "e912c060-f6c7-4263-aac8-c3f6218e0218"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193430Z:d4283372-4dcb-456c-9c97-1c0cf9abac93"
+ "WESTUS:20200721T164140Z:e912c060-f6c7-4263-aac8-c3f6218e0218"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:30 GMT"
+ "Tue, 21 Jul 2020 16:41:40 GMT"
],
"Content-Length": [
"433"
@@ -196,18 +196,18 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
//[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f33d8812-2695-4e7c-bf79-e53c1677c7c8"
+ "f61053ce-7481-4c04-a1e6-377b76fb3074"
],
"If-Match": [
"*"
@@ -219,7 +219,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -236,31 +236,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACwY=\""
+ "\"AAAAAAAAPS8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b1e9904-3053-4e12-ab51-7dd2ead4b665"
+ "5f1d87dc-5b98-40d5-b8d3-2d6c66d02ee2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "911358ae-74ae-45fc-babf-c0fe20e1b9cb"
+ "1f055650-300f-4e9c-a064-7f01cdfe78f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193432Z:911358ae-74ae-45fc-babf-c0fe20e1b9cb"
+ "WESTUS:20200721T164141Z:1f055650-300f-4e9c-a064-7f01cdfe78f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:32 GMT"
+ "Tue, 21 Jul 2020 16:41:41 GMT"
],
"Content-Length": [
"433"
@@ -272,17 +272,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd1efe21-1b93-4126-a072-f112b23f9e9d"
+ "9f81017b-6629-448d-b454-e684a5f8f752"
],
"Accept-Language": [
"en-US"
@@ -291,7 +291,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -302,31 +302,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACwQ=\""
+ "\"AAAAAAAAPS0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c2c31f17-abd2-45b8-939b-90cbcb0d21d1"
+ "0199758a-9baa-4693-949b-2ac533bc34aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "2c7b06d0-db1b-4293-a707-03d5f015945b"
+ "85e934f6-df17-4d80-9338-f3064e519be2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193431Z:2c7b06d0-db1b-4293-a707-03d5f015945b"
+ "WESTUS:20200721T164140Z:85e934f6-df17-4d80-9338-f3064e519be2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:30 GMT"
+ "Tue, 21 Jul 2020 16:41:40 GMT"
],
"Content-Length": [
"433"
@@ -338,17 +338,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "970e8639-a46b-4938-94c7-3fb36a956c6d"
+ "bec02abf-7c48-457f-a7ba-086527bbaadc"
],
"Accept-Language": [
"en-US"
@@ -357,7 +357,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -368,31 +368,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACwQ=\""
+ "\"AAAAAAAAPS0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e3c560aa-4fcb-4275-9ab4-cd7401aa255f"
+ "2e227af3-f8b1-4b3e-abcd-d9579a02bc66"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "b357ecd4-9284-4da7-aaaa-9f8a654d1dc8"
+ "b1e29ef9-72b5-4fb5-8f87-998f4fc4b37e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193431Z:b357ecd4-9284-4da7-aaaa-9f8a654d1dc8"
+ "WESTUS:20200721T164141Z:b1e29ef9-72b5-4fb5-8f87-998f4fc4b37e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:31 GMT"
+ "Tue, 21 Jul 2020 16:41:41 GMT"
],
"Content-Length": [
"433"
@@ -404,17 +404,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "370968b3-013a-4a30-b1b1-409e77bb541b"
+ "aaa025e7-d8ea-42ac-8d5b-7498e413e0c6"
],
"Accept-Language": [
"en-US"
@@ -423,7 +423,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -434,31 +434,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACwQ=\""
+ "\"AAAAAAAAPS0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "67dc88a2-0a92-4013-93b0-44108d1d864a"
+ "cfea42c8-00a8-474f-95d0-9fa87c84aab6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "ac9b3b74-1266-49a3-b36c-5d236f5803a7"
+ "53eb6ab5-3ef9-479e-bc3e-75ba36bb9bbc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193431Z:ac9b3b74-1266-49a3-b36c-5d236f5803a7"
+ "WESTUS:20200721T164141Z:53eb6ab5-3ef9-479e-bc3e-75ba36bb9bbc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:31 GMT"
+ "Tue, 21 Jul 2020 16:41:41 GMT"
],
"Content-Length": [
"433"
@@ -470,17 +470,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f4c7a76-f902-4c99-afda-856eb103f899"
+ "2f5c130d-19d3-422c-b54b-00c3dd8f2f72"
],
"Accept-Language": [
"en-US"
@@ -489,7 +489,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -500,31 +500,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACwY=\""
+ "\"AAAAAAAAPS8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "71bead74-eb88-42a1-b452-da6c1f9bc4cc"
+ "2acd521b-5fa9-44f8-827f-b796f81af184"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "8fa1796a-e0be-4c57-bdf2-db30437d71f3"
+ "973fa7ed-56fe-4e19-b9f2-61dd6d53e7a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193432Z:8fa1796a-e0be-4c57-bdf2-db30437d71f3"
+ "WESTUS:20200721T164142Z:973fa7ed-56fe-4e19-b9f2-61dd6d53e7a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:32 GMT"
+ "Tue, 21 Jul 2020 16:41:42 GMT"
],
"Content-Length": [
"433"
@@ -536,17 +536,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9063c7bf-acb1-4c59-aff3-a828c930bc37"
+ "7b899b81-ae3c-43f2-b6bc-1cce22f87335"
],
"Accept-Language": [
"en-US"
@@ -555,7 +555,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -569,25 +569,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e4d473d-c836-4778-b494-ec82ce6e64e8"
+ "480c5fe3-b4bc-4e07-a3b0-42261489500e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "2e6a24d3-051b-44b4-bf85-6279094b29c3"
+ "5aa1de4b-440b-45b0-bd04-84e2ad01e34b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193433Z:2e6a24d3-051b-44b4-bf85-6279094b29c3"
+ "WESTUS:20200721T164142Z:5aa1de4b-440b-45b0-bd04-84e2ad01e34b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:33 GMT"
+ "Tue, 21 Jul 2020 16:41:42 GMT"
],
"Content-Length": [
"87"
@@ -603,13 +603,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eeca28d-9d5b-4f5d-b744-baf81edf439a"
+ "6c530d1f-a021-4bc7-8dd1-74147cba77e5"
],
"If-Match": [
"*"
@@ -621,7 +621,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -635,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77050f90-a202-44a5-ae7d-47b44d275853"
+ "9eead4e9-95b9-4926-9be0-9ed77326a502"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -644,16 +644,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "58aecc0a-a0bc-4db9-a98a-ea586fac6da7"
+ "1bb37cbd-6312-4d91-8946-99b487f57208"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193433Z:58aecc0a-a0bc-4db9-a98a-ea586fac6da7"
+ "WESTUS:20200721T164142Z:1bb37cbd-6312-4d91-8946-99b487f57208"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:33 GMT"
+ "Tue, 21 Jul 2020 16:41:42 GMT"
],
"Expires": [
"-1"
@@ -668,7 +668,7 @@
],
"Names": {
"": [
- "ps8581"
+ "ps5439"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json
index 006b57334ab6..fc27bd559382 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e4e3a72-a556-4a73-873c-37a7f688dfb8"
+ "6ffe4731-20a6-4f11-9798-2b40ea3815a1"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,25 +30,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f9a457a2-ea5c-4b2c-9170-b1e1d07d3867"
+ "4c025c77-780e-47b0-8549-2d7f3e121588"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11998"
],
"x-ms-correlation-request-id": [
- "e04dc2e5-d7b2-4061-bd99-b88ecfd23af7"
+ "06558bc6-f692-4e26-80ee-bd2aba434e87"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193316Z:e04dc2e5-d7b2-4061-bd99-b88ecfd23af7"
+ "WESTUS:20200721T164030Z:06558bc6-f692-4e26-80ee-bd2aba434e87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:15 GMT"
+ "Tue, 21 Jul 2020 16:40:30 GMT"
],
"Content-Length": [
"34"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29b37164-9f93-45b9-8013-caabfd8d14b1"
+ "e4815268-0ad8-4e76-b441-8f6e3d919f48"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,25 +93,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e0c5d60-6e29-443f-bac4-31c29b8e00a8"
+ "6ab7ab11-ff4c-4fb3-a16b-83a5090d3b84"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11995"
],
"x-ms-correlation-request-id": [
- "4b6fc2b1-91fc-4114-a1a2-cf471e0a921c"
+ "35709db1-0dcd-49a0-adc1-f9906ee3f99c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193323Z:4b6fc2b1-91fc-4114-a1a2-cf471e0a921c"
+ "WESTUS:20200721T164036Z:35709db1-0dcd-49a0-adc1-f9906ee3f99c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:23 GMT"
+ "Tue, 21 Jul 2020 16:40:36 GMT"
],
"Content-Length": [
"34"
@@ -127,13 +127,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0ODAxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzODA2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1433\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"011661c3-b3bc-450b-9767-d5275b8fd058\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1386\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"91456f2b-efd7-4190-9b37-71137e3eb705\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "030d4ccb-f91c-44df-bbb0-91651356f3c4"
+ "93baa819-a06a-4d2b-8edb-4876e9b819b2"
],
"Accept-Language": [
"en-US"
@@ -142,7 +142,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,31 +159,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACpA=\""
+ "\"AAAAAAAAPLw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "13162d28-7959-4a27-8b7a-716cb07e17d3"
+ "7953463f-ad27-419e-97c9-3861cee2a073"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "0d4ade0e-24bb-4265-b989-c80c268deb76"
+ "e8cdc266-30e7-48de-992a-f16e53997e88"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193320Z:0d4ade0e-24bb-4265-b989-c80c268deb76"
+ "WESTUS:20200721T164033Z:e8cdc266-30e7-48de-992a-f16e53997e88"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:19 GMT"
+ "Tue, 21 Jul 2020 16:40:33 GMT"
],
"Content-Length": [
"505"
@@ -195,17 +195,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps4801\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1433\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5eab27ffa2ca601230023164}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3806\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1386\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171a81a2ca600fe4c296cc}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06fd47fe-b864-4292-8d89-3fde966d6f57"
+ "8434528f-ecfc-4b00-b10d-a1803da45f3d"
],
"Accept-Language": [
"en-US"
@@ -214,7 +214,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,31 +231,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACpM=\""
+ "\"AAAAAAAAPL4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a6d77207-f79b-44cb-8ef1-38496c59f846"
+ "c4d6ddb5-98da-4518-847f-250589b5e82a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "58284a2a-81b6-4eb0-9985-9228a7fe08d7"
+ "aa272907-4e43-4717-8f42-2aafe116406e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193321Z:58284a2a-81b6-4eb0-9985-9228a7fe08d7"
+ "WESTUS:20200721T164035Z:aa272907-4e43-4717-8f42-2aafe116406e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:21 GMT"
+ "Tue, 21 Jul 2020 16:40:34 GMT"
],
"Content-Length": [
"1398"
@@ -267,17 +267,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14f48451-4c40-4036-b0e9-7b8595d1d208"
+ "cbbc7990-8228-4251-989d-27bc26b2ddaa"
],
"If-Match": [
"*"
@@ -289,7 +289,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -306,31 +306,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACpY=\""
+ "\"AAAAAAAAPME=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4f74f476-ac66-4d77-a522-b8558c698dce"
+ "af7a22a5-8708-4a04-bd41-b368a8d4aefc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "d9aea4bf-b126-4c20-97c6-4c5733586625"
+ "fceb01bb-d582-40c7-ace8-c39f1aabc7e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193322Z:d9aea4bf-b126-4c20-97c6-4c5733586625"
+ "WESTUS:20200721T164035Z:fceb01bb-d582-40c7-ace8-c39f1aabc7e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:22 GMT"
+ "Tue, 21 Jul 2020 16:40:35 GMT"
],
"Content-Length": [
"1057"
@@ -342,7 +342,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -352,7 +352,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "034c8789-b13a-4315-b552-bb6b4ca68847"
+ "6a7dbc4e-7578-49eb-8a5a-d2949a1ebdbe"
],
"Accept-Language": [
"en-US"
@@ -361,7 +361,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -372,31 +372,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACpY=\""
+ "\"AAAAAAAAPME=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1ef14389-0fa2-4bc3-bf27-8fba055fb13d"
+ "5b3d53d5-a32b-477a-b7a8-c58ad94a3809"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11997"
],
"x-ms-correlation-request-id": [
- "f44feb1d-eff7-407e-8d6d-71f5d9250b23"
+ "c585ec17-7a97-4130-b1c9-28c99ae81323"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193322Z:f44feb1d-eff7-407e-8d6d-71f5d9250b23"
+ "WESTUS:20200721T164035Z:c585ec17-7a97-4130-b1c9-28c99ae81323"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:22 GMT"
+ "Tue, 21 Jul 2020 16:40:35 GMT"
],
"Content-Length": [
"1057"
@@ -408,7 +408,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -418,7 +418,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c33947d-33e8-4245-8bfe-c7af6117fbc6"
+ "4ab37b99-8bf4-411f-ace7-8ea85806f4a0"
],
"Accept-Language": [
"en-US"
@@ -427,7 +427,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -438,31 +438,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACpY=\""
+ "\"AAAAAAAAPME=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ab2e5bab-d68f-450a-8b75-5f0059aded72"
+ "50dde091-b28c-4bde-9ab1-355db49870c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11996"
],
"x-ms-correlation-request-id": [
- "9d1760ef-1886-4aa8-adb7-c5df22b8aeaa"
+ "d09c27b9-ce42-488d-884b-3ccfb077bfa5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193322Z:9d1760ef-1886-4aa8-adb7-c5df22b8aeaa"
+ "WESTUS:20200721T164036Z:d09c27b9-ce42-488d-884b-3ccfb077bfa5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:22 GMT"
+ "Tue, 21 Jul 2020 16:40:35 GMT"
],
"Content-Length": [
"1057"
@@ -474,7 +474,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -484,7 +484,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f653dc70-c66c-4369-bd01-944ce46d509e"
+ "83703d1d-7a0f-4b6a-bf87-c8d2c3bbbd2f"
],
"If-Match": [
"*"
@@ -496,7 +496,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -510,25 +510,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f7abc154-267f-4178-9fac-dc06fdb9f79a"
+ "f82c4431-c56d-428c-b921-3f1911910469"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "5ef57028-c2e6-43ef-a700-b46bf34f5d2c"
+ "a9b5c81e-a8d0-4e76-be65-b568fd8eda50"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193323Z:5ef57028-c2e6-43ef-a700-b46bf34f5d2c"
+ "WESTUS:20200721T164036Z:a9b5c81e-a8d0-4e76-be65-b568fd8eda50"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:22 GMT"
+ "Tue, 21 Jul 2020 16:40:35 GMT"
],
"Expires": [
"-1"
@@ -547,7 +547,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48b05946-133b-443f-b7ab-2f1e042437b5"
+ "ce49890b-ce18-4df7-ba6a-3c57359222aa"
],
"If-Match": [
"*"
@@ -559,7 +559,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -573,25 +573,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2445cca2-394c-4451-9df2-36c78f683817"
+ "5edc8fd6-d9f1-4e7a-8a0b-7a5416839cd7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14998"
],
"x-ms-correlation-request-id": [
- "b9bd0c5b-11ff-4f0b-b93b-2f2707ac64a5"
+ "2d9297a2-00dd-49b2-9371-8f90a21e6d7d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193323Z:b9bd0c5b-11ff-4f0b-b93b-2f2707ac64a5"
+ "WESTUS:20200721T164036Z:2d9297a2-00dd-49b2-9371-8f90a21e6d7d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:23 GMT"
+ "Tue, 21 Jul 2020 16:40:36 GMT"
],
"Expires": [
"-1"
@@ -601,13 +601,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0ODAxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzODA2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "411c73ba-8212-4ba8-81a0-5621ff52ba5e"
+ "af79edf3-a95b-47e5-a46f-ef4b0745184e"
],
"If-Match": [
"*"
@@ -619,7 +619,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -633,25 +633,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5b781af6-495d-44e4-97d2-4e492953850d"
+ "57b41a75-f57e-43c7-a33c-1787efe57a4d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "612134e6-8cc9-417c-9eae-becafddcef8f"
+ "2ac009d2-d36a-47e9-a2ac-637d23e9dc30"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193323Z:612134e6-8cc9-417c-9eae-becafddcef8f"
+ "WESTUS:20200721T164036Z:2ac009d2-d36a-47e9-a2ac-637d23e9dc30"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:23 GMT"
+ "Tue, 21 Jul 2020 16:40:36 GMT"
],
"Expires": [
"-1"
@@ -670,7 +670,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fcfe74e8-1a43-4d7a-a295-9b2bd2ce5f80"
+ "9646ef27-e9a9-4bbe-b13a-8873dddb3c56"
],
"Accept-Language": [
"en-US"
@@ -679,7 +679,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -693,25 +693,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5a04030d-6563-455a-82a1-4fdd24cdc01c"
+ "f79168fa-3aab-45ff-8ca7-d1fb500acd7c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11994"
],
"x-ms-correlation-request-id": [
- "7a1ba0dc-8554-4613-a08c-141be058cba8"
+ "0b66134b-b538-4fd5-b58e-4cd42fae438c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193323Z:7a1ba0dc-8554-4613-a08c-141be058cba8"
+ "WESTUS:20200721T164037Z:0b66134b-b538-4fd5-b58e-4cd42fae438c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:23 GMT"
+ "Tue, 21 Jul 2020 16:40:36 GMT"
],
"Content-Length": [
"505"
@@ -723,17 +723,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27ffa2ca601230023163\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab27ffa2ca601230023163\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab27ffa2ca601230023164\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a81a2ca600fe4c296cb\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171a81a2ca600fe4c296cb\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171a81a2ca600fe4c296cc\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27ffa2ca601230023163?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyN2ZmYTJjYTYwMTIzMDAyMzE2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a81a2ca600fe4c296cb?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYTgxYTJjYTYwMGZlNGMyOTZjYj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84d8f931-4894-4397-9de5-8d8efbfbf852"
+ "e91059cc-5efc-4e30-b3fd-5343f40f8c18"
],
"If-Match": [
"*"
@@ -745,7 +745,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -759,25 +759,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9d2dc737-d3d9-496e-ad89-e0132e00f822"
+ "5005d94d-980c-439a-93b3-c7e3f7e6896c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14994"
+ "14996"
],
"x-ms-correlation-request-id": [
- "955b26f3-4832-4579-a857-ad86310a9e40"
+ "fbf9be15-6fbf-4dcf-a410-bc0c4dcd1de6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193325Z:955b26f3-4832-4579-a857-ad86310a9e40"
+ "WESTUS:20200721T164037Z:fbf9be15-6fbf-4dcf-a410-bc0c4dcd1de6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:25 GMT"
+ "Tue, 21 Jul 2020 16:40:37 GMT"
],
"Expires": [
"-1"
@@ -792,8 +792,8 @@
],
"Names": {
"": [
- "ps4801",
- "ps1433"
+ "ps3806",
+ "ps1386"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json
new file mode 100644
index 000000000000..6a2cc9e49ad5
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json
@@ -0,0 +1,1718 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91b3f803-ecf5-47d4-a305-a9c303d9d8fc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c982be26-a096-4e48-b06f-9c6059aa5f19"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "90ce59dc-bc94-4ec4-8656-3a664e8faf4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164145Z:90ce59dc-bc94-4ec4-8656-3a664e8faf4c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:45 GMT"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c0b03c4a-fddf-494e-aede-2081d653e53e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fa36f2b0-63ff-4223-b1c6-157a31755f5d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4abfed1-6351-4a05-901c-bc36be59ed22"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164146Z:d4abfed1-6351-4a05-901c-bc36be59ed22"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:46 GMT"
+ ],
+ "Content-Length": [
+ "573"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fbd8cca-ad2d-4e34-8b45-1deb074610ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "202"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"ND0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dd32cfe8-bd06-4aa2-947e-eab0f2009241"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fce697a-dea1-4d8d-9ddb-0e4c858c7a27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164146Z:7fce697a-dea1-4d8d-9ddb-0e4c858c7a27"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:46 GMT"
+ ],
+ "Content-Length": [
+ "475"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": null\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d913fbb-332b-4a8a-ace9-3054d2faae30"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"ND0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e521c888-fa29-42fa-837b-eb17801cf2fa"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f7907dd-ecd0-4882-b383-d3981d6542dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164146Z:5f7907dd-ecd0-4882-b383-d3981d6542dd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:46 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "898dd3ea-96d4-44a5-876a-d0973325aaf3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"ND0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1bc5d986-bb56-4b4e-9f9b-69c8dea24209"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ddb4dab-99f4-4502-9e5b-b67d508a6061"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164147Z:5ddb4dab-99f4-4502-9e5b-b67d508a6061"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:46 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73b9a789-3cf2-4153-af44-446cdeb95c6d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"NT0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8cd9e91e-6c0a-4656-b2bf-08a43fbf6b0f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cdb877a-140d-4cc2-a3d8-904c5b742de4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164147Z:4cdb877a-140d-4cc2-a3d8-904c5b742de4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:47 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps1923\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6e321f0-7bf0-4f22-8459-b9e5bb5173b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"Nj0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b0ae19d9-ed02-4c98-bebb-d31eb653b8f7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "93b5859e-f86c-4bd9-ae57-31ea5ffd8d96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164148Z:93b5859e-f86c-4bd9-ae57-31ea5ffd8d96"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:47 GMT"
+ ],
+ "Content-Length": [
+ "473"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps4428\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "103268e3-82d9-41ab-b6d1-59278995b7cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"Nz0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fea2ffb-d2e5-4b07-867d-2a30b411d2f1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4e4775e-ab53-482f-8179-619c6d286de2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164148Z:a4e4775e-ab53-482f-8179-619c6d286de2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:48 GMT"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps3976\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps4428\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "617b6bee-562e-4ba8-8cfa-5869063d7f61"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b387b76b-22fc-47e1-9118-fd8e5634272d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0a5990c-3b5c-4319-9eea-050826e863bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164151Z:e0a5990c-3b5c-4319-9eea-050826e863bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:51 GMT"
+ ],
+ "Content-Length": [
+ "83"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Gateway not found.\",\r\n \"details\": null\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps1923\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c7165b2-ff6d-45c6-8e88-4a11686468e8"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "202"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e512184e-f455-4475-93d0-006255d6d98f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "84ad2547-e53b-4342-bb10-ed3c494a3e09"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164147Z:84ad2547-e53b-4342-bb10-ed3c494a3e09"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4428\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d18e86f7-4abb-4cec-87bd-0a3712716fc6"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30c32a0c-f5f8-4253-bd22-c0de273b2b25"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "687d14a9-04b2-4619-881b-d3d758200250"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164147Z:687d14a9-04b2-4619-881b-d3d758200250"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps3976\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "194cadd9-b8a4-4ad9-9d76-fae65c87b79c"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "848fa248-795e-411b-8f76-3ffd9c6139d8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-correlation-request-id": [
+ "c51a6567-61b6-40e0-af34-f9c8d04c898a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164148Z:c51a6567-61b6-40e0-af34-f9c8d04c898a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/listKeys?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7cf6f63-f05e-45c4-acf3-9489b8777e02"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"Nz0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19804bb1-63ce-455b-b284-4fdc012ec918"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "464a5601-88d2-4cfc-ac64-2648f59b71b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164148Z:464a5601-88d2-4cfc-ac64-2648f59b71b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:48 GMT"
+ ],
+ "Content-Length": [
+ "205"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primary\": \"3VmgDEOZhND27l/meKJGhphSaMQjhfint88SqfE5/jofBm/oeFuHCn7RYCuk8mXKmmczVYsTEE8wW74G9Q5AwQ==\",\r\n \"secondary\": \"Eyma/lCxpEIOHJ1H60M32kEVUZWeojoGpwzMH1LmiCfBN8lSCJvrVs/P3VcaH6oePJjH4XgtvSBsRDi3JGcLPw==\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e3024ca2-8fe9-4962-ae15-26aab8020e73"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "83aa55d7-2afa-4e0d-b507-eb6b5f23b4c2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "64baf6eb-b5a1-40e5-b62e-8158692bbe49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164148Z:64baf6eb-b5a1-40e5-b62e-8158692bbe49"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:48 GMT"
+ ],
+ "Content-Length": [
+ "729"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20d04600-771e-4673-9374-83065f1f1a1b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAPIk=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7158eeb7-ef9e-44cb-b81e-ac227c324236"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "e82f4d1b-c5d9-404b-bcbc-2bd3f41e585a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164149Z:e82f4d1b-c5d9-404b-bcbc-2bd3f41e585a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:48 GMT"
+ ],
+ "Content-Length": [
+ "619"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4cee81f-671e-44ae-96e4-7de74e89396f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eac8279d-d1b5-4d12-898f-b05fd562327a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "f246e43f-c71b-45b5-8463-f9890389d7b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164149Z:f246e43f-c71b-45b5-8463-f9890389d7b5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:48 GMT"
+ ],
+ "Content-Length": [
+ "754"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7da58f2f-92f9-4adb-91f5-e1175111e962"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "63cc7303-5bc1-47f0-a45c-2eae325d73bb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "84a76df2-d736-4446-b821-60ef0115caa5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164149Z:84a76df2-d736-4446-b821-60ef0115caa5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:49 GMT"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd0eb0a7-9203-45a1-9bd3-d63be966ccf5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f71b12e-3f4e-4f25-bcd3-72bc51fc7d52"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0d073d8-dd2b-4852-bb0e-e0f9054f9cbe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164149Z:e0d073d8-dd2b-4852-bb0e-e0f9054f9cbe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestMethod": "PUT",
+ //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
+ "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "645a6b8c-16d7-4d66-802c-631ee6a0ad2d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2493"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAPUc=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed572414-220f-4390-a478-bd399284d325"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d3d17b5-b790-495a-a190-826b02cf8345"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164149Z:6d3d17b5-b790-495a-a190-826b02cf8345"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:49 GMT"
+ ],
+ "Content-Length": [
+ "433"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps3580\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8bc434b4-692b-40a5-804c-0c777df85a01"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAPUc=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "807f7f2e-c01f-4136-bd7d-fb84e78270c0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "98535471-f31a-45e2-aca5-57a671794158"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164150Z:98535471-f31a-45e2-aca5-57a671794158"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:49 GMT"
+ ],
+ "Content-Length": [
+ "433"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps3580\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42e3bc24-ff63-4415-bf30-5a857f8ad0f0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "291"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"ST0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "62c5255a-3ef3-46a7-b832-37203437ca94"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d995e2e-ab81-4669-ad09-74b23bc445f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164150Z:9d995e2e-ab81-4669-ad09-74b23bc445f3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:50 GMT"
+ ],
+ "Content-Length": [
+ "674"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d5fe3ef-0355-4df5-8e20-c4c2ff8f912e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"ST0AAAAAAAA=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eabc7908-1fe4-4b7c-9100-260d6fa2c5e8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d0c3a93-95be-40fe-8149-ca17192a061a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164150Z:1d0c3a93-95be-40fe-8149-ca17192a061a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:50 GMT"
+ ],
+ "Content-Length": [
+ "674"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3fd2cc0d-e7cb-463a-bcbf-068413f6281e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e97dac5-a916-4eec-a034-369fe2a1e05e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ffa8618-f6ba-47be-9bdf-c120edd8f7b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164150Z:4ffa8618-f6ba-47be-9bdf-c120edd8f7b0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:50 GMT"
+ ],
+ "Content-Length": [
+ "766"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9eed8c56-cbb6-44f6-abe2-acb58aaa4932"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b415dca0-53a3-468f-97d2-a87c158627cc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "32f18491-ee75-479b-bb70-f6b89aad7b3d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164151Z:32f18491-ee75-479b-bb70-f6b89aad7b3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad1081ff-92a3-4bba-9d0c-40e7e7f1e03e"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "503ed782-9ef2-479c-a7fb-b3fdadb6cdd8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7ac27f7-6187-4971-959d-abdafa9fbabd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164151Z:d7ac27f7-6187-4971-959d-abdafa9fbabd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "49b8b18a-d36b-4767-ad73-28bf2a164015"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3e0cb3bc-7c6b-4429-af40-4f77a170b5b2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "591c97e0-d9a1-4a26-ae4a-245a390281b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200721T164151Z:591c97e0-d9a1-4a26-ae4a-245a390281b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 21 Jul 2020 16:41:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "": [
+ "ps5610",
+ "ps404",
+ "ps3580",
+ "ps3781",
+ "ps1570",
+ "ps6437",
+ "ps8447",
+ "ps9962",
+ "ps1923",
+ "ps4428",
+ "ps3976"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json
index 3412abc24500..ea7bf7c5c8a6 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2910913b-3d16-478c-8950-3b9ae6171a3e"
+ "18a81d11-e5c5-4034-9adb-5b5dfebd03a0"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "82b806eb-3bd7-4488-931a-1fdefa8703dd"
+ "ba4b026a-7d32-4af1-977d-9ff358975e2c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "61710fa7-18b3-406e-be26-7b02f69e4970"
+ "4d112701-9c4d-4519-8936-8f705dde7d81"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193340Z:61710fa7-18b3-406e-be26-7b02f69e4970"
+ "WESTUS:20200721T164051Z:4d112701-9c4d-4519-8936-8f705dde7d81"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:40 GMT"
+ "Tue, 21 Jul 2020 16:40:50 GMT"
],
"Content-Length": [
"1808"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21b612a7-a5e1-42ce-9ec6-525e1357730e"
+ "be5d348e-181e-4b23-aed7-ee1f3c629dad"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fa819481-4696-4986-b046-7589b09ef20f"
+ "c4be8367-4b07-473f-a98c-f593afbdd287"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "bace2b0e-e156-4542-b7f4-2236b854366b"
+ "0ac85734-c3be-4f86-9804-343763e9016b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193341Z:bace2b0e-e156-4542-b7f4-2236b854366b"
+ "WESTUS:20200721T164051Z:0ac85734-c3be-4f86-9804-343763e9016b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:40 GMT"
+ "Tue, 21 Jul 2020 16:40:51 GMT"
],
"Content-Length": [
"562"
@@ -136,7 +136,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "860f8bc1-4da5-46f7-818f-e40540cfdbcd"
+ "b6d2f601-d6e4-4345-8ff8-253687ea05a6"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cc4de721-3fe2-45fd-a672-76bd3c2d85f5"
+ "d04d8be5-40d8-4180-9c76-a77154117b0c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "8abd1609-776c-4e29-a300-e3a1dff0b4a7"
+ "0dc76149-af08-4369-8e16-a12019a73466"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193341Z:8abd1609-776c-4e29-a300-e3a1dff0b4a7"
+ "WESTUS:20200721T164052Z:0dc76149-af08-4369-8e16-a12019a73466"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:40 GMT"
+ "Tue, 21 Jul 2020 16:40:51 GMT"
],
"Content-Length": [
"518"
@@ -202,7 +202,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c87283d4-e50c-4640-9275-1b60aa138fcd"
+ "474474ce-ac4f-42fc-87c8-32fba98e3bff"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,7 +228,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3d8962ae-1502-41b8-81d1-9d37df869b88"
+ "381b9250-cf56-4dce-968d-d4b4571b570c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +237,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4cc38be2-1318-4c9e-86c6-c3227f188656"
+ "4463ee72-2755-44de-8b5e-cc097658d42a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193341Z:4cc38be2-1318-4c9e-86c6-c3227f188656"
+ "WESTUS:20200721T164052Z:4463ee72-2755-44de-8b5e-cc097658d42a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:40 GMT"
+ "Tue, 21 Jul 2020 16:40:51 GMT"
],
"Content-Length": [
"538"
@@ -262,13 +262,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps7087\",\r\n \"description\": \"ps4372\",\r\n \"type\": \"custom\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"type\": \"custom\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a639b72a-767d-42be-a2a3-e93ebc4f3644"
+ "da057424-1414-4846-95a1-3ed7b11920dc"
],
"Accept-Language": [
"en-US"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +294,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACqI=\""
+ "\"AAAAAAAAPM0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2b0387bd-7110-48f7-ae1e-b3935993042a"
+ "66c6b88a-0930-4253-9715-d9b8a6f47526"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "01e61249-d652-4057-8a52-efc19253848a"
+ "3fb6b047-0de3-452b-8e00-fdce6f125483"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193341Z:01e61249-d652-4057-8a52-efc19253848a"
+ "WESTUS:20200721T164052Z:3fb6b047-0de3-452b-8e00-fdce6f125483"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:41 GMT"
+ "Tue, 21 Jul 2020 16:40:51 GMT"
],
"Content-Length": [
"403"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps7087\",\r\n \"description\": \"ps4372\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69ab1045-0013-4a2d-86bf-d2eaf1d8afd4"
+ "3851b9f7-4610-4b9c-8982-f0ceb26610aa"
],
"Accept-Language": [
"en-US"
@@ -349,7 +349,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,13 +360,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACqI=\""
+ "\"AAAAAAAAPM0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b13cfd70-e169-460e-acfa-227796bbcfb9"
+ "3279da16-5ba8-41b0-a6ec-f5914a8088ac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "d3f1e989-42df-47f7-9f04-c583aa15cff9"
+ "57c60766-6b8b-415c-840a-d81e9c03905a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193341Z:d3f1e989-42df-47f7-9f04-c583aa15cff9"
+ "WESTUS:20200721T164052Z:57c60766-6b8b-415c-840a-d81e9c03905a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:41 GMT"
+ "Tue, 21 Jul 2020 16:40:51 GMT"
],
"Content-Length": [
"403"
@@ -396,17 +396,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps7087\",\r\n \"description\": \"ps4372\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aecfb223-b8b0-4845-9289-a0af72b2a464"
+ "cacc481c-0cdb-4959-aebe-4166d43b29f7"
],
"Accept-Language": [
"en-US"
@@ -415,7 +415,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,13 +426,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACqQ=\""
+ "\"AAAAAAAAPM8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6f9c854-f7c3-4ed8-8a77-c439a79188ee"
+ "58d48fab-44c8-46ca-8505-b583c3365189"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,19 +441,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "9f84048c-6ec4-4ffa-9637-295d13d931f2"
+ "ebe84916-38dd-4d0a-bde3-1eadb2ddb3b3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193342Z:9f84048c-6ec4-4ffa-9637-295d13d931f2"
+ "WESTUS:20200721T164053Z:ebe84916-38dd-4d0a-bde3-1eadb2ddb3b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:41 GMT"
+ "Tue, 21 Jul 2020 16:40:52 GMT"
],
"Content-Length": [
- "403"
+ "402"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,17 +462,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3aa1511-2cd8-4587-b24a-0e119f30f84e"
+ "7cfc2039-98c7-4988-9b12-60f2fb1a4dac"
],
"Accept-Language": [
"en-US"
@@ -481,7 +481,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,7 +495,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "78350357-830c-4107-a514-09b32f950b87"
+ "8f549e4c-31c6-4943-bcdd-d7beb9c4683c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +504,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "d4de054c-510a-415f-8ce2-8afe2e592955"
+ "0dca6e30-a2da-4b9b-91ad-c920a9d3722e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193347Z:d4de054c-510a-415f-8ce2-8afe2e592955"
+ "WESTUS:20200721T164058Z:0dca6e30-a2da-4b9b-91ad-c920a9d3722e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:47 GMT"
+ "Tue, 21 Jul 2020 16:40:57 GMT"
],
"Content-Length": [
"81"
@@ -529,13 +529,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c0952e3-ea2b-4bc3-ac89-1047125362cc"
+ "082a6e4f-dbf2-4ba9-852a-f2fb82f003fa"
],
"If-Match": [
"*"
@@ -547,13 +547,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "87"
+ "86"
]
},
"ResponseHeaders": {
@@ -567,7 +567,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1a98e19-7947-48ed-98e6-4ca19076159d"
+ "fc9cd263-30e6-4c16-8de2-1ffd43b8ef6f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,16 +576,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "19691bc9-fda5-4f6d-9c6b-9d1045058415"
+ "7dc4c04e-2981-4f32-94ea-c0a3df2198af"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193342Z:19691bc9-fda5-4f6d-9c6b-9d1045058415"
+ "WESTUS:20200721T164053Z:7dc4c04e-2981-4f32-94ea-c0a3df2198af"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:41 GMT"
+ "Tue, 21 Jul 2020 16:40:52 GMT"
],
"Expires": [
"-1"
@@ -601,7 +601,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c987685d-af17-4543-8697-80538eea6bf5"
+ "874a6d45-eb3b-4920-b047-869729c36d93"
],
"Accept-Language": [
"en-US"
@@ -610,7 +610,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,7 +624,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5141ac7f-8186-4a27-9cc0-d1d70d012db2"
+ "6b698b2a-9039-4357-a526-d723d3de3edd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,19 +633,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "28747c64-07eb-414d-ad45-b0ddf787b558"
+ "3e28dabc-e19a-4436-b0b9-da3cf78df62c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193342Z:28747c64-07eb-414d-ad45-b0ddf787b558"
+ "WESTUS:20200721T164053Z:3e28dabc-e19a-4436-b0b9-da3cf78df62c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:41 GMT"
+ "Tue, 21 Jul 2020 16:40:52 GMT"
],
"Content-Length": [
- "1285"
+ "1287"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -654,17 +654,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzODI0Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDY4MD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82953397-72bc-49e9-8e33-5494f3a488f5"
+ "12446dc8-fd35-4c3e-8236-9392bf1657f6"
],
"Accept-Language": [
"en-US"
@@ -673,7 +673,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -684,13 +684,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACqQ=\""
+ "\"AAAAAAAAPM8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ee6f8ffb-70f2-4323-a2d4-7cbed7d90c3c"
+ "bdf5a550-5cbb-4a03-9777-58760c25a0f6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -699,19 +699,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "90023d75-8069-4387-9bb4-fbf90d7d9e15"
+ "69765349-5d3a-4246-9aa5-966706a76a39"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193342Z:90023d75-8069-4387-9bb4-fbf90d7d9e15"
+ "WESTUS:20200721T164053Z:69765349-5d3a-4246-9aa5-966706a76a39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:42 GMT"
+ "Tue, 21 Jul 2020 16:40:52 GMT"
],
"Content-Length": [
- "429"
+ "428"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,7 +720,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -730,7 +730,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47561433-d4d0-4519-9e9c-1cce5494015f"
+ "1c41e3cc-7ecf-4ff0-ac70-cc92b52d7eb0"
],
"Accept-Language": [
"en-US"
@@ -739,7 +739,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -753,7 +753,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69e5b3d1-384a-4ac7-b93c-ec71fb0cbceb"
+ "b7868f2f-03ee-4fdf-82f6-8a806fecf121"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -762,19 +762,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "9e9aa760-8099-4135-a751-fb51f539f611"
+ "fdd35c75-bc09-468e-8862-7697c24d2eb6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193343Z:9e9aa760-8099-4135-a751-fb51f539f611"
+ "WESTUS:20200721T164054Z:fdd35c75-bc09-468e-8862-7697c24d2eb6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:42 GMT"
+ "Tue, 21 Jul 2020 16:40:53 GMT"
],
"Content-Length": [
- "2366"
+ "2365"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -783,7 +783,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
"StatusCode": 200
},
{
@@ -793,7 +793,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09cd2362-8c86-4dbc-9dc5-0137462f6af7"
+ "ec547191-a638-4afc-95e6-29172952a22e"
],
"Accept-Language": [
"en-US"
@@ -802,7 +802,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,7 +816,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "58353120-693e-4701-9722-65e76ef00c21"
+ "b89f0d06-3251-482b-a508-f691025e9ee6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -825,16 +825,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "4e9110a1-44f9-42d8-b510-0bda2eb83178"
+ "ac6fd5d4-7f4b-49de-85db-4c3473636668"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193343Z:4e9110a1-44f9-42d8-b510-0bda2eb83178"
+ "WESTUS:20200721T164054Z:ac6fd5d4-7f4b-49de-85db-4c3473636668"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:43 GMT"
+ "Tue, 21 Jul 2020 16:40:53 GMT"
],
"Content-Length": [
"1886"
@@ -850,13 +850,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzODI0Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDY4MD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d602128-4882-49e2-8547-19f4347fd3ce"
+ "747eab8e-7c11-425a-b455-4946512fd4ff"
],
"Accept-Language": [
"en-US"
@@ -865,7 +865,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -879,7 +879,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8eca5b5c-d050-49c4-9b02-b13902a8ed87"
+ "114cb7e8-6b6d-4425-b570-df95923d6b93"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -888,16 +888,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "6da751cb-c057-41cc-b1e8-d94ad0217c24"
+ "3c1fe3f4-7781-4812-ac2f-7a371083993a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193343Z:6da751cb-c057-41cc-b1e8-d94ad0217c24"
+ "WESTUS:20200721T164054Z:3c1fe3f4-7781-4812-ac2f-7a371083993a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:43 GMT"
+ "Tue, 21 Jul 2020 16:40:53 GMT"
],
"Expires": [
"-1"
@@ -916,7 +916,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d95ac918-a24c-473c-a756-8089f51b8f60"
+ "ffbf5899-2908-44aa-ac7e-2478073d76b6"
],
"Accept-Language": [
"en-US"
@@ -925,7 +925,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -939,7 +939,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "824a8fe8-3b62-4fb8-be97-7f97f70e56c9"
+ "15ffe4b4-6fbd-403c-88ce-57d6ffedc169"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -948,16 +948,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "7869f902-01f0-49ee-a625-92d5bd845759"
+ "206aac81-3a51-47af-87ae-5baade181b0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193344Z:7869f902-01f0-49ee-a625-92d5bd845759"
+ "WESTUS:20200721T164055Z:206aac81-3a51-47af-87ae-5baade181b0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:43 GMT"
+ "Tue, 21 Jul 2020 16:40:54 GMT"
],
"Content-Length": [
"664"
@@ -973,13 +973,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246/users/1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDYvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODAvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c31edd5-9204-4e5b-a4cb-df66744b11cf"
+ "ebf7fee9-b8d4-4e67-a2d6-ada9c36252de"
],
"Accept-Language": [
"en-US"
@@ -988,7 +988,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -999,13 +999,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACq0=\""
+ "\"AAAAAAAAPNg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7ff6e659-8256-4f80-aae5-70714171abdb"
+ "abca5541-da33-42bb-87da-c20fc5fc9ac0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1014,16 +1014,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "a1b86403-b734-452f-a4ec-b2cc11d9d1f2"
+ "537371b8-b35a-474c-ac9c-b44a6380a7b0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193344Z:a1b86403-b734-452f-a4ec-b2cc11d9d1f2"
+ "WESTUS:20200721T164055Z:537371b8-b35a-474c-ac9c-b44a6380a7b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:44 GMT"
+ "Tue, 21 Jul 2020 16:40:55 GMT"
],
"Content-Length": [
"504"
@@ -1035,7 +1035,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -1045,7 +1045,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69cd9147-51de-466b-8b33-768dab8cbe03"
+ "75921ad6-30db-428b-92ea-01ea402f5f03"
],
"Accept-Language": [
"en-US"
@@ -1054,7 +1054,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1068,7 +1068,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8efdcac0-f326-4893-8246-62fe8ab79ed5"
+ "4c6ba2cf-2b4c-4fda-b2a8-f260d514af27"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1077,19 +1077,19 @@
"11989"
],
"x-ms-correlation-request-id": [
- "c97d414d-2461-43f0-9689-b039e79424de"
+ "adb37c53-59ae-4ec8-a354-8923747d3e67"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193345Z:c97d414d-2461-43f0-9689-b039e79424de"
+ "WESTUS:20200721T164056Z:adb37c53-59ae-4ec8-a354-8923747d3e67"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:45 GMT"
+ "Tue, 21 Jul 2020 16:40:55 GMT"
],
"Content-Length": [
- "1715"
+ "1714"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1098,7 +1098,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
@@ -1108,7 +1108,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "264e9d70-b4a9-4ecc-8b06-f6a5d0e72f54"
+ "2c0ed1e6-2155-4323-9148-207a3c970c57"
],
"Accept-Language": [
"en-US"
@@ -1117,7 +1117,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1131,7 +1131,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a343ddd-d879-413d-a03a-b34d0553f30c"
+ "fa0d17b4-5bb2-410e-bd73-1080139d40c1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1140,16 +1140,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "5f9eb696-6742-4886-9ec6-af3ad1b9b736"
+ "b68a74cb-1810-4a2b-92b9-e245a0fbb81e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193346Z:5f9eb696-6742-4886-9ec6-af3ad1b9b736"
+ "WESTUS:20200721T164057Z:b68a74cb-1810-4a2b-92b9-e245a0fbb81e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:45 GMT"
+ "Tue, 21 Jul 2020 16:40:56 GMT"
],
"Content-Length": [
"1247"
@@ -1165,13 +1165,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246/users/1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDYvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODAvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78b0d75a-c80c-419c-9321-ead9cc4f9e3e"
+ "0ea40bd7-cf74-4d0b-8756-c574785456bb"
],
"Accept-Language": [
"en-US"
@@ -1180,7 +1180,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1194,7 +1194,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9ab8503d-4073-46b3-919d-20ef5ef0f196"
+ "b23d9788-3bfb-4ec2-af27-1f5a25c675ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1203,16 +1203,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "e09d20fc-4851-4265-af40-2b6123e23cd5"
+ "bd2fc3d3-f528-42c8-b31a-ffc8ca57d2f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193346Z:e09d20fc-4851-4265-af40-2b6123e23cd5"
+ "WESTUS:20200721T164057Z:bd2fc3d3-f528-42c8-b31a-ffc8ca57d2f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:45 GMT"
+ "Tue, 21 Jul 2020 16:40:56 GMT"
],
"Expires": [
"-1"
@@ -1225,13 +1225,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8833\",\r\n \"description\": \"ps6886\",\r\n \"type\": \"external\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"type\": \"external\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d0cc6e7-6d61-4346-b52d-e58bfe313fc4"
+ "f75a32ca-75bc-4b0f-b144-d2ec0a140fb0"
],
"Accept-Language": [
"en-US"
@@ -1240,7 +1240,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1257,13 +1257,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACrQ=\""
+ "\"AAAAAAAAPN8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dceefb32-67b1-476e-9766-0818e5361132"
+ "404803d1-4926-4b23-8774-2ba9b9691f5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1272,16 +1272,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "35ad5d9c-1a2c-4da3-997d-047cc4ee9d6a"
+ "d829c2a7-880f-43ee-9fe9-3420164c0311"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193347Z:35ad5d9c-1a2c-4da3-997d-047cc4ee9d6a"
+ "WESTUS:20200721T164057Z:d829c2a7-880f-43ee-9fe9-3420164c0311"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:46 GMT"
+ "Tue, 21 Jul 2020 16:40:56 GMT"
],
"Content-Length": [
"417"
@@ -1293,17 +1293,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8583\",\r\n \"properties\": {\r\n \"displayName\": \"ps8833\",\r\n \"description\": \"ps6886\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps2123\",\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3301515-72ad-4c10-9a74-196b3830264b"
+ "d366f20d-ee70-4f86-af8c-18c56e7e1e09"
],
"Accept-Language": [
"en-US"
@@ -1312,7 +1312,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1323,13 +1323,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACrQ=\""
+ "\"AAAAAAAAPN8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "24da983c-fdcc-42fd-8bd1-b23a249896d1"
+ "5dabdbde-45fc-499b-a80e-3435ce4e63b0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1338,16 +1338,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "47b6e509-8d2d-49c2-ab91-3abd562af766"
+ "f7d2d5b8-b3a4-40bd-9822-e4596de16ef4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193347Z:47b6e509-8d2d-49c2-ab91-3abd562af766"
+ "WESTUS:20200721T164057Z:f7d2d5b8-b3a4-40bd-9822-e4596de16ef4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:46 GMT"
+ "Tue, 21 Jul 2020 16:40:56 GMT"
],
"Content-Length": [
"405"
@@ -1359,17 +1359,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8583\",\r\n \"properties\": {\r\n \"displayName\": \"ps8833\",\r\n \"description\": \"ps6886\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps2123\",\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb7e634d-b6ab-4166-8b8d-1bec3727f3ce"
+ "667d216c-5947-4125-9cc3-b2201c053373"
],
"Accept-Language": [
"en-US"
@@ -1378,7 +1378,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1392,7 +1392,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c4508461-af04-4459-86f6-64e0473428a4"
+ "7b66a210-2339-4858-be25-8a0f63408bdf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1401,16 +1401,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "e1338bf8-6b41-4e3b-a20e-8f861308a05a"
+ "18571117-e38b-44ea-9252-655bdcd7df2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193348Z:e1338bf8-6b41-4e3b-a20e-8f861308a05a"
+ "WESTUS:20200721T164058Z:18571117-e38b-44ea-9252-655bdcd7df2c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:47 GMT"
+ "Tue, 21 Jul 2020 16:40:57 GMT"
],
"Content-Length": [
"81"
@@ -1426,13 +1426,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfb56903-6d94-45b0-820a-945ddf718633"
+ "014a5d47-c599-48b3-8984-9a8578042b9f"
],
"If-Match": [
"*"
@@ -1444,7 +1444,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1458,7 +1458,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b3a9cbfd-71eb-4f78-af13-d371440d875c"
+ "38e388f8-0cfb-4d46-9243-d86983a925f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1467,16 +1467,16 @@
"14997"
],
"x-ms-correlation-request-id": [
- "9c28b294-ab6b-4952-a908-36313c998fc3"
+ "215db46f-e7d6-49ad-9f78-a69d38d322e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193347Z:9c28b294-ab6b-4952-a908-36313c998fc3"
+ "WESTUS:20200721T164058Z:215db46f-e7d6-49ad-9f78-a69d38d322e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:47 GMT"
+ "Tue, 21 Jul 2020 16:40:57 GMT"
],
"Expires": [
"-1"
@@ -1489,13 +1489,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a504a7e0-5207-4de3-8d18-48495f9e6e8a"
+ "da8d806a-f3a4-49db-8d7b-d8ee65246786"
],
"If-Match": [
"*"
@@ -1507,7 +1507,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1521,7 +1521,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5822cc4e-36c4-4bd2-a2f4-709cdcfb23f9"
+ "ee637c56-c8ed-4bbe-a6d7-db90d7e0d356"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1530,16 +1530,16 @@
"14996"
],
"x-ms-correlation-request-id": [
- "6355c301-53ae-411b-9289-c4cd0389fcc6"
+ "7e221242-8dd5-42fe-b267-6286d6657fd5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193348Z:6355c301-53ae-411b-9289-c4cd0389fcc6"
+ "WESTUS:20200721T164058Z:7e221242-8dd5-42fe-b267-6286d6657fd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:47 GMT"
+ "Tue, 21 Jul 2020 16:40:57 GMT"
],
"Expires": [
"-1"
@@ -1554,14 +1554,14 @@
],
"Names": {
"": [
- "ps8246",
- "ps8583",
- "ps7087",
- "ps4372",
- "ps4152",
- "ps7130",
- "ps8833",
- "ps6886"
+ "ps4680",
+ "ps2123",
+ "ps4054",
+ "ps3351",
+ "ps225",
+ "ps7604",
+ "ps4516",
+ "ps3726"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json
index 11607f52105c..7d3665eb36b0 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json
@@ -4,10 +4,10 @@
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"clientId\": \"ps9606\",\r\n \"clientSecret\": \"ps2311\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"clientId\": \"ps5232\",\r\n \"clientSecret\": \"ps7442\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9df8ad8a-a9b2-410c-ae97-3c2d5abc1415"
+ "95b5f9e7-16de-4cbc-a884-7c555c189c28"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp8=\""
+ "\"AAAAAAAAPMo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e80c7555-2b14-4cb9-823a-a1682e4b5bb6"
+ "c539b953-8588-4c25-9bb8-814339dc08ba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +48,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "27f9c616-d1cd-4c2d-89f0-8222180adfa2"
+ "cd8ad993-2fc4-43da-9245-816182ac568f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:27f9c616-d1cd-4c2d-89f0-8222180adfa2"
+ "WESTUS:20200721T164047Z:cd8ad993-2fc4-43da-9245-816182ac568f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:35 GMT"
+ "Tue, 21 Jul 2020 16:40:47 GMT"
],
"Content-Length": [
"583"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"clientSecret\": \"ps2311\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"clientSecret\": \"ps7442\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3dbd04d2-f554-47d7-99fe-8b3750affb1a"
+ "6602845c-587d-48a9-b0df-3ba152da2ce7"
],
"Accept-Language": [
"en-US"
@@ -88,7 +88,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,31 +99,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp8=\""
+ "\"AAAAAAAAPMo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b9dc2ddd-7a28-492d-b266-2ab7858e294d"
+ "96476592-b51f-449e-a653-52e1c306cff2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "b89f22aa-a982-4c80-901f-7bb90fd19fc0"
+ "0cce1e70-29ca-4045-b21b-81f6e5689c12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:b89f22aa-a982-4c80-901f-7bb90fd19fc0"
+ "WESTUS:20200721T164047Z:0cce1e70-29ca-4045-b21b-81f6e5689c12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:35 GMT"
+ "Tue, 21 Jul 2020 16:40:47 GMT"
],
"Content-Length": [
"552"
@@ -135,7 +135,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -145,7 +145,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25cb905d-6450-438f-989b-262fd7ac97fb"
+ "e5a9f58a-0903-4847-840e-11d1d6710203"
],
"Accept-Language": [
"en-US"
@@ -154,7 +154,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,31 +165,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACqA=\""
+ "\"AAAAAAAAPMs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "336861f2-82ec-44be-af1d-a45722c16cb7"
+ "28fe4f5f-07e4-4642-9dfa-ee3667c5e00b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "292c22f8-45d6-42ec-8f3e-c078220af863"
+ "7f821adc-7ebb-4ee4-af8a-89c05b60b1e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:292c22f8-45d6-42ec-8f3e-c078220af863"
+ "WESTUS:20200721T164048Z:7f821adc-7ebb-4ee4-af8a-89c05b60b1e5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:35 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Content-Length": [
"609"
@@ -201,7 +201,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -211,7 +211,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "488fed9a-9185-4a27-9798-302d55adbe64"
+ "f709d48b-0154-4c4f-b0a4-c7640b2e1a75"
],
"Accept-Language": [
"en-US"
@@ -220,7 +220,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -234,25 +234,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7dc898ae-3930-4ab1-8233-d4e7c86936fe"
+ "adb50c89-83df-4a88-9036-0730c6fd3504"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "3df8ed42-461d-405b-932e-5aef4a6ee176"
+ "d49d7b99-6d48-49a7-be2e-e5eba1366b39"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193337Z:3df8ed42-461d-405b-932e-5aef4a6ee176"
+ "WESTUS:20200721T164048Z:d49d7b99-6d48-49a7-be2e-e5eba1366b39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:36 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Content-Length": [
"92"
@@ -274,7 +274,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58f723d6-5ab6-4178-8c60-6c7d09148e7d"
+ "6557b96b-9fb3-402d-8d12-1f0bd1b50d10"
],
"Accept-Language": [
"en-US"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,25 +297,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "97538610-b320-4f20-a84a-8a7f7a1fbc39"
+ "0ae572b0-49a3-4d6d-8fa5-f51809e58e16"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "23eb8fee-cb30-480b-b560-8bb4b50d34cd"
+ "7fa0051e-ea70-4777-9652-a88ae811ea71"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193337Z:23eb8fee-cb30-480b-b560-8bb4b50d34cd"
+ "WESTUS:20200721T164048Z:7fa0051e-ea70-4777-9652-a88ae811ea71"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:36 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Content-Length": [
"92"
@@ -337,7 +337,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "640391af-f11b-4624-add8-4fae8c65239e"
+ "41dac2fa-3594-4dc6-9023-94bd12fdd5e4"
],
"Accept-Language": [
"en-US"
@@ -346,7 +346,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACp8=\""
+ "\"AAAAAAAAPMo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4ae0e16c-d872-4065-8c36-fa7233901b58"
+ "534eab47-f5fb-4d60-b76c-7b79147789b0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "b60b9700-5793-440a-86d7-c13e1b7bc9c7"
+ "177bf4ab-4f7a-4855-ab63-b8ade3b33823"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:b60b9700-5793-440a-86d7-c13e1b7bc9c7"
+ "WESTUS:20200721T164047Z:177bf4ab-4f7a-4855-ab63-b8ade3b33823"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:35 GMT"
+ "Tue, 21 Jul 2020 16:40:47 GMT"
],
"Content-Length": [
"25"
@@ -393,7 +393,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps2311\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps7442\"\r\n}",
"StatusCode": 200
},
{
@@ -403,7 +403,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83f5ef3f-677e-4d80-bce8-bb5ec6ff586c"
+ "c3dcdb77-c6f1-4047-8756-c8aeb6edf7dd"
],
"Accept-Language": [
"en-US"
@@ -412,7 +412,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,13 +423,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACqA=\""
+ "\"AAAAAAAAPMs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1a5cd22-e9b7-446f-93dd-f75ffdd0c3a5"
+ "bee64852-81ca-44a7-adee-adaeeccf0b7b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +438,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1ddbe3dc-5e12-4e85-9c83-bd0121f439af"
+ "6aabdfd3-19e9-4506-9aa5-0efa35cc98ac"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:1ddbe3dc-5e12-4e85-9c83-bd0121f439af"
+ "WESTUS:20200721T164048Z:6aabdfd3-19e9-4506-9aa5-0efa35cc98ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:36 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Content-Length": [
"25"
@@ -459,7 +459,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps2311\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps7442\"\r\n}",
"StatusCode": 200
},
{
@@ -469,7 +469,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6e0e9bd-c8f6-431f-97e4-bedf08039910"
+ "2a8fd0ca-cd9d-4ec8-a53c-1492b73be2bf"
],
"Accept-Language": [
"en-US"
@@ -478,7 +478,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -492,25 +492,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3053339b-b876-45b9-bcbb-dcd6aba9ecd6"
+ "dcad5760-fd65-494b-9e28-7e4a58c4fa79"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "327ffb4d-7ce6-4c88-b0e0-0467b8689c2e"
+ "57fe3fa0-00cf-4ac9-8ff9-cbe180d7b3d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:327ffb4d-7ce6-4c88-b0e0-0467b8689c2e"
+ "WESTUS:20200721T164047Z:57fe3fa0-00cf-4ac9-8ff9-cbe180d7b3d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:35 GMT"
+ "Tue, 21 Jul 2020 16:40:47 GMT"
],
"Content-Length": [
"652"
@@ -522,7 +522,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
@@ -532,7 +532,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a424f00-ec3d-4bd0-be5a-91f4bd5ce5e8"
+ "904ca949-876b-4a65-9daa-2178b482685b"
],
"If-Match": [
"*"
@@ -544,7 +544,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -564,7 +564,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "083c735e-cf42-43b3-8229-f10924076166"
+ "a59db6f3-30b9-4da4-9074-a43ddfda9e75"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,16 +573,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "cb93fb70-95f5-41be-aed6-5d490e81201b"
+ "f47a327e-44a4-4469-88fd-3dd97907248b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193336Z:cb93fb70-95f5-41be-aed6-5d490e81201b"
+ "WESTUS:20200721T164048Z:f47a327e-44a4-4469-88fd-3dd97907248b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:35 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Expires": [
"-1"
@@ -598,7 +598,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eab49b82-b631-48ed-a4b6-03c2de9ac47d"
+ "ea70ba1a-5a8d-4ebc-a9b5-a7dc740d4c23"
],
"If-Match": [
"*"
@@ -610,7 +610,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,7 +624,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "65c33a6e-d7bf-44d7-a60d-f9a561885411"
+ "43be1868-1f47-4a67-8a1d-b378ae58ea3f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +633,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b950e84d-63c8-488b-aea6-5cb8452e2cd6"
+ "bca1b7f0-d659-430a-b2cf-4b72643a2de3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193337Z:b950e84d-63c8-488b-aea6-5cb8452e2cd6"
+ "WESTUS:20200721T164048Z:bca1b7f0-d659-430a-b2cf-4b72643a2de3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:36 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Expires": [
"-1"
@@ -661,7 +661,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1bd2c66d-c498-4c12-91f1-0193923c2fdb"
+ "3a0cfdbc-753d-4e3e-b595-b0d28964a5a8"
],
"If-Match": [
"*"
@@ -673,7 +673,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,7 +687,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "90d3359b-dde7-45e7-8177-52d732c8ff61"
+ "c832cffe-b6a2-4145-b08a-800dd6c2e404"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +696,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "22db9c17-5003-42d7-9ac7-195ef63450b5"
+ "d7afa06a-167c-4c41-8d9d-0331aa645214"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193337Z:22db9c17-5003-42d7-9ac7-195ef63450b5"
+ "WESTUS:20200721T164048Z:d7afa06a-167c-4c41-8d9d-0331aa645214"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:36 GMT"
+ "Tue, 21 Jul 2020 16:40:48 GMT"
],
"Expires": [
"-1"
@@ -717,8 +717,8 @@
],
"Names": {
"": [
- "ps9606",
- "ps2311"
+ "ps5232",
+ "ps7442"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json
index 7bcda296af80..1bf0c1b3bfcd 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json
@@ -4,10 +4,10 @@
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"clientSecret\": \"ps2572\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"clientSecret\": \"ps4771\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88fe5384-472d-47be-988b-fa77efd809d3"
+ "db007ae9-4c57-46b2-af7f-26e72749bddd"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACik=\""
+ "\"AAAAAAAAPE0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "25aac983-67ad-4318-a161-2cf01ab9706b"
+ "e751adad-d4e8-41dc-a1e8-2a9734713186"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +48,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "d1300a41-1429-41b8-be76-d466c1f1bf5f"
+ "7bf11c17-2e22-433b-b6dc-6138dd6b5fed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193011Z:d1300a41-1429-41b8-be76-d466c1f1bf5f"
+ "WESTUS:20200721T163640Z:7bf11c17-2e22-433b-b6dc-6138dd6b5fed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:10 GMT"
+ "Tue, 21 Jul 2020 16:36:39 GMT"
],
"Content-Length": [
"381"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"clientSecret\": \"ps2572\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"clientSecret\": \"ps4771\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d1f8a13-f27d-4b6c-8f7a-19d354ccaa4c"
+ "a78da227-df05-4266-8286-31c52c444f28"
],
"Accept-Language": [
"en-US"
@@ -88,7 +88,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACik=\""
+ "\"AAAAAAAAPE0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69d08ed1-8c85-473b-9c29-380b72bfc311"
+ "1a7a63c5-c2af-4c45-9682-84e9b4c8e234"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +114,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "4f06153a-d65c-45a0-88a1-fa750696391f"
+ "39ccd953-5735-4bee-9e57-f2ada35add12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193012Z:4f06153a-d65c-45a0-88a1-fa750696391f"
+ "WESTUS:20200721T163641Z:39ccd953-5735-4bee-9e57-f2ada35add12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:11 GMT"
+ "Tue, 21 Jul 2020 16:36:40 GMT"
],
"Content-Length": [
"350"
@@ -135,7 +135,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -145,7 +145,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d3d0b18-b38a-41cb-b7fc-3c6d42a89bdc"
+ "84449941-4f4a-40dc-a47e-80460ee38b10"
],
"Accept-Language": [
"en-US"
@@ -154,7 +154,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,13 +165,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACio=\""
+ "\"AAAAAAAAPE4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9a76e17d-2301-45f4-9225-ba2f63d404f0"
+ "7384e70c-c340-4cbf-9a46-eb20c39c2be8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,16 +180,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "71fadf02-92f9-47f6-b920-ac7d6ef039c7"
+ "e7fbdc00-eb2b-4bc1-9aa7-5cd341b58c10"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193012Z:71fadf02-92f9-47f6-b920-ac7d6ef039c7"
+ "WESTUS:20200721T163642Z:e7fbdc00-eb2b-4bc1-9aa7-5cd341b58c10"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:11 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Content-Length": [
"350"
@@ -201,7 +201,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -211,7 +211,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25432c2e-8896-42c4-b82c-5cdf8d95d294"
+ "64842fe3-2459-45af-af7f-03c5edecf418"
],
"Accept-Language": [
"en-US"
@@ -220,7 +220,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -234,7 +234,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "100c19f8-9a2f-46a4-a88e-d763bea42ac3"
+ "d1307c9a-4b68-4561-86ab-25c03bf12030"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "1a674e70-b777-4f15-8b82-1563dde42575"
+ "c5f050b1-3794-4fb0-aed9-571bd8871ff2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193013Z:1a674e70-b777-4f15-8b82-1563dde42575"
+ "WESTUS:20200721T163642Z:c5f050b1-3794-4fb0-aed9-571bd8871ff2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:12 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Content-Length": [
"92"
@@ -274,7 +274,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44aada45-d5b1-404f-8303-47917228c980"
+ "6dff80ce-3074-4abf-9838-984692529da7"
],
"Accept-Language": [
"en-US"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,7 +297,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e39752f3-0d1f-4efc-92ac-d4bc4fe92d48"
+ "0a0cdf03-597e-48ba-8f35-bfb3ba3871bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +306,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "1aeac7fb-d499-4e8d-9869-447534d745fe"
+ "55d59ab5-ab6c-48b6-9617-973ea2fe312d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193013Z:1aeac7fb-d499-4e8d-9869-447534d745fe"
+ "WESTUS:20200721T163642Z:55d59ab5-ab6c-48b6-9617-973ea2fe312d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:12 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Content-Length": [
"92"
@@ -337,7 +337,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64102333-9a1b-45e2-b3f8-ac4fe0dbb13f"
+ "c6454070-262c-4bda-9418-040f078d17d6"
],
"Accept-Language": [
"en-US"
@@ -346,7 +346,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACik=\""
+ "\"AAAAAAAAPE0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4f82a62f-d7bc-4944-9585-e3194b399a75"
+ "394dc85a-bfa1-4e5e-9d0f-679c84109d59"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "f57e5fd3-ac21-4a11-b546-124d1abc26bc"
+ "8686f08d-d29b-43f5-a3e0-41394fb04dee"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193012Z:f57e5fd3-ac21-4a11-b546-124d1abc26bc"
+ "WESTUS:20200721T163641Z:8686f08d-d29b-43f5-a3e0-41394fb04dee"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:11 GMT"
+ "Tue, 21 Jul 2020 16:36:40 GMT"
],
"Content-Length": [
"25"
@@ -393,7 +393,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps2572\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps4771\"\r\n}",
"StatusCode": 200
},
{
@@ -403,7 +403,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7bf77311-846b-449b-a766-6e49af5e933d"
+ "6baac71b-3b11-4fd3-950d-61ac6ad597a9"
],
"Accept-Language": [
"en-US"
@@ -412,7 +412,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,13 +423,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACio=\""
+ "\"AAAAAAAAPE4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cbf85524-2583-408a-9c52-25219ae89014"
+ "2595d0a0-5867-4079-b8a1-88063bcb4665"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +438,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "80d24ad6-431a-4515-acaf-8445d9b4643a"
+ "6988f4be-554b-4c59-9eda-70c0cba56a38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193012Z:80d24ad6-431a-4515-acaf-8445d9b4643a"
+ "WESTUS:20200721T163642Z:6988f4be-554b-4c59-9eda-70c0cba56a38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:12 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Content-Length": [
"25"
@@ -459,7 +459,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps4074\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps2526\"\r\n}",
"StatusCode": 200
},
{
@@ -469,7 +469,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5f3a3c6-75a5-4b9d-bb8a-473416cd1466"
+ "861a8c7a-6f34-4f68-8d27-0faf85b190c5"
],
"Accept-Language": [
"en-US"
@@ -478,7 +478,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -492,7 +492,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "899eb4a1-562e-4a9b-8aa3-d695fbb7bbe0"
+ "9deafbbb-8f34-46c9-afe6-5c75ba5b5760"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +501,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1a91beec-7b2f-4e8b-af31-fa68d59ea5b2"
+ "f46bf53d-08b6-4d14-be53-4209783dae18"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193012Z:1a91beec-7b2f-4e8b-af31-fa68d59ea5b2"
+ "WESTUS:20200721T163641Z:f46bf53d-08b6-4d14-be53-4209783dae18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:11 GMT"
+ "Tue, 21 Jul 2020 16:36:40 GMT"
],
"Content-Length": [
"426"
@@ -522,17 +522,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps4074\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2526\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dcfcb6d9-f9d5-4a12-af49-004647c6551e"
+ "870385ea-77b6-410b-aaa6-d0de075eab80"
],
"If-Match": [
"*"
@@ -544,7 +544,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -564,7 +564,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "27a0b3e6-b377-4319-8d7c-0d92bb12e177"
+ "996f5b65-1b9c-4c44-8af8-085b661f1e05"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,16 +573,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ed5fb60c-7286-45b2-b0f8-55a93d75358c"
+ "b1616352-2110-4e1b-980e-7a4f99b53b27"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193012Z:ed5fb60c-7286-45b2-b0f8-55a93d75358c"
+ "WESTUS:20200721T163642Z:b1616352-2110-4e1b-980e-7a4f99b53b27"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:11 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Expires": [
"-1"
@@ -598,7 +598,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48d18f5f-51c3-42dd-b7fb-ef80372c21f4"
+ "ebbb707f-4dfe-45d0-9b51-2f1e83aa54e8"
],
"If-Match": [
"*"
@@ -610,7 +610,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,7 +624,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "661d6b18-1c9d-4d08-80a6-3723c601a43c"
+ "8516ded8-7ce5-45a9-97a9-c69065251254"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +633,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "52a72c4c-ec17-4aa1-a9a2-136b4ebf1b1e"
+ "cb135994-6f57-4b3d-aa8b-3a8cb9d7b67a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193013Z:52a72c4c-ec17-4aa1-a9a2-136b4ebf1b1e"
+ "WESTUS:20200721T163642Z:cb135994-6f57-4b3d-aa8b-3a8cb9d7b67a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:12 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Expires": [
"-1"
@@ -661,7 +661,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36770810-f394-476e-b530-3ded0848048e"
+ "dc715e90-e74a-4307-a009-949df59ece89"
],
"If-Match": [
"*"
@@ -673,7 +673,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,7 +687,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "24f775f1-008a-4576-933a-96710246e2c6"
+ "06da2aa8-31de-4465-8ebd-cafc2e997a42"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +696,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "9fbbaee0-a10c-46b2-af12-b013a577e12b"
+ "ed623c70-1763-4693-9cc0-fae60a05c76f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193013Z:9fbbaee0-a10c-46b2-af12-b013a577e12b"
+ "WESTUS:20200721T163642Z:ed623c70-1763-4693-9cc0-fae60a05c76f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:12 GMT"
+ "Tue, 21 Jul 2020 16:36:42 GMT"
],
"Expires": [
"-1"
@@ -717,9 +717,9 @@
],
"Names": {
"": [
- "ps7061",
- "ps2572",
- "ps4074"
+ "ps1122",
+ "ps4771",
+ "ps2526"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json
index 24da5cb4f143..8393a67d3258 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json
@@ -1,14 +1,14 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
//[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1005\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://vifedoeventhub.servicebus.windows.net/;SharedAccessKeyName=manage;SharedAccessKey=GQmdXBfPkD/lY7/X1LDAWxDBVszam4GidL+4h0l85TY=;EntityPath=test\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2857\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://vifedoeventhub.servicebus.windows.net/;SharedAccessKeyName=manage;SharedAccessKey=GQmdXBfPkD/lY7/X1LDAWxDBVszam4GidL+4h0l85TY=;EntityPath=test\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dff2fbe2-0b1d-43bf-a079-7cb787d16874"
+ "bbf3b8d7-d00f-429c-989d-d2ac6eb015a6"
],
"Accept-Language": [
"en-US"
@@ -17,7 +17,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -34,31 +34,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACyM=\""
+ "\"AAAAAAAAPWk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5342bf8d-53b8-4e70-9fb7-12ce69f4005b"
+ "dedbc3b7-5f45-4d66-b733-85eab5d88eb7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1191"
],
"x-ms-correlation-request-id": [
- "55f24658-0c27-481e-af24-7c1407be0434"
+ "a2d94baa-853d-483f-ab22-7f3cd0d060df"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193458Z:55f24658-0c27-481e-af24-7c1407be0434"
+ "WESTUS:20200721T164214Z:a2d94baa-853d-483f-ab22-7f3cd0d060df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:57 GMT"
+ "Tue, 21 Jul 2020 16:42:14 GMT"
],
"Content-Length": [
"526"
@@ -70,17 +70,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1005\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2857\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"isBuffered\": false\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"isBuffered\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a9a55c5-28d8-4328-8148-09169e9954d0"
+ "946083ca-73f5-40f4-bbfa-e377b9ab9eb2"
],
"If-Match": [
"*"
@@ -92,7 +92,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -112,25 +112,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7f37d3d3-bc27-4bba-a172-0ccd1d3973fe"
+ "69ca2fce-4385-417c-b9b5-3365fe976641"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1190"
],
"x-ms-correlation-request-id": [
- "a50da820-5885-4c38-957c-5a968cddd5a7"
+ "19aefcdd-38e3-4e4c-a7d2-06bfeb773928"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193458Z:a50da820-5885-4c38-957c-5a968cddd5a7"
+ "WESTUS:20200721T164215Z:19aefcdd-38e3-4e4c-a7d2-06bfeb773928"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:58 GMT"
+ "Tue, 21 Jul 2020 16:42:14 GMT"
],
"Expires": [
"-1"
@@ -140,13 +140,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa5ef118-f1fb-41a2-ad56-948f09c2ee32"
+ "f4cfee96-fb30-4d2d-bbce-659b13530d63"
],
"Accept-Language": [
"en-US"
@@ -155,7 +155,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -166,31 +166,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACyU=\""
+ "\"AAAAAAAAPWs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3de9a98-ffbc-4c1c-834d-3a67d3e7eedc"
+ "c2ba7841-d1d6-4ad0-96f5-f65a2575d49d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11982"
],
"x-ms-correlation-request-id": [
- "2828dae3-ea7a-455b-aca1-f128eefc1f81"
+ "326bce72-543a-4858-8412-6fa592db1daa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193459Z:2828dae3-ea7a-455b-aca1-f128eefc1f81"
+ "WESTUS:20200721T164215Z:326bce72-543a-4858-8412-6fa592db1daa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:58 GMT"
+ "Tue, 21 Jul 2020 16:42:14 GMT"
],
"Content-Length": [
"527"
@@ -202,17 +202,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12f3739d-d211-413f-bee4-6236bc3d8a86"
+ "4db1811e-40de-4f5f-af25-35ba460237b2"
],
"Accept-Language": [
"en-US"
@@ -221,7 +221,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -232,31 +232,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACyU=\""
+ "\"AAAAAAAAPWs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d5b428cb-4661-442b-861d-e611ee2fca92"
+ "2c53fd65-eef9-4e9f-b8ce-4b7a4143f3fc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11980"
],
"x-ms-correlation-request-id": [
- "96cbc2af-7356-4d8d-88d6-4e9b7b9bd29d"
+ "8a88332e-99f5-405c-9ed4-69823c6c24ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193459Z:96cbc2af-7356-4d8d-88d6-4e9b7b9bd29d"
+ "WESTUS:20200721T164216Z:8a88332e-99f5-405c-9ed4-69823c6c24ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:58 GMT"
+ "Tue, 21 Jul 2020 16:42:15 GMT"
],
"Content-Length": [
"527"
@@ -268,17 +268,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aecf7081-3e74-4013-829a-a4343226f395"
+ "9ecd3527-9ed0-4743-b8ed-350666582d9d"
],
"Accept-Language": [
"en-US"
@@ -287,7 +287,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -301,25 +301,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b34c5b3a-c09c-427f-99e3-5d8f097d3d9e"
+ "dd02c32b-bb0b-4fab-a2e5-f99a389b3d7d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11979"
],
"x-ms-correlation-request-id": [
- "d75d98c3-4fe2-4e26-8bfe-185eb8a9e107"
+ "9ae5f774-9cb0-4f64-8804-2b53bc211af5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193502Z:d75d98c3-4fe2-4e26-8bfe-185eb8a9e107"
+ "WESTUS:20200721T164219Z:9ae5f774-9cb0-4f64-8804-2b53bc211af5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:01 GMT"
+ "Tue, 21 Jul 2020 16:42:18 GMT"
],
"Content-Length": [
"82"
@@ -341,7 +341,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d931fd5-9849-4b92-b3de-861d1a8c2a08"
+ "2716cf04-f29f-4701-991b-c10b776bef78"
],
"Accept-Language": [
"en-US"
@@ -350,7 +350,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -364,25 +364,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fca7061f-8c21-4df7-a2b5-d479f11d43c8"
+ "d2ffe6bc-95d7-42de-8978-0682ec143ba4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11981"
],
"x-ms-correlation-request-id": [
- "8fcc8c3f-7471-4477-b837-003954f7bbe6"
+ "f42d59f2-29c7-4539-b9f4-73eff450ff45"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193459Z:8fcc8c3f-7471-4477-b837-003954f7bbe6"
+ "WESTUS:20200721T164216Z:f42d59f2-29c7-4539-b9f4-73eff450ff45"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:58 GMT"
+ "Tue, 21 Jul 2020 16:42:15 GMT"
],
"Content-Length": [
"627"
@@ -394,17 +394,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9135\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"c7d92a9f-7cd0-425a-9b98-6f19536e4cab\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9053\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a8481030-6708-4619-a1a2-fd813f8a9773\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "225756c9-8d8a-4bed-a8e2-a9cc6c69d327"
+ "ebdd984a-13c2-455e-a7e5-00438db19492"
],
"Accept-Language": [
"en-US"
@@ -413,7 +413,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,34 +430,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACyo=\""
+ "\"AAAAAAAAPXA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f958ec6f-a3b7-4cfc-b228-ec59f82bd650"
+ "346859c0-6c3b-411f-8e16-e060579e5499"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1189"
],
"x-ms-correlation-request-id": [
- "e247ebdd-9dbc-48b7-a3d1-3be2c4e1d3bf"
+ "71da3038-8a4e-48f2-9a26-a16410b96634"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193502Z:e247ebdd-9dbc-48b7-a3d1-3be2c4e1d3bf"
+ "WESTUS:20200721T164219Z:71da3038-8a4e-48f2-9a26-a16410b96634"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:01 GMT"
+ "Tue, 21 Jul 2020 16:42:18 GMT"
],
"Content-Length": [
- "505"
+ "501"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -466,17 +466,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps6345\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9135\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5eab2866a2ca6012300231a2}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps10\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9053\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171aeba2ca600fe4c29716}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3057ec4-1a05-446e-bca0-63ab91ceecab"
+ "3d30c326-1057-4513-836c-aed3fcdaa732"
],
"If-Match": [
"*"
@@ -488,7 +488,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -502,25 +502,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "11697051-82cd-47b7-92cb-03bcc037d9ec"
+ "0cc8f6a0-5981-408f-be27-687ee97ad874"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14996"
],
"x-ms-correlation-request-id": [
- "e8969d80-d6de-4a88-b103-e6a463ae7dc6"
+ "1e36ad02-cbe8-49cf-90be-08961df3cea0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193502Z:e8969d80-d6de-4a88-b103-e6a463ae7dc6"
+ "WESTUS:20200721T164219Z:1e36ad02-cbe8-49cf-90be-08961df3cea0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:01 GMT"
+ "Tue, 21 Jul 2020 16:42:18 GMT"
],
"Expires": [
"-1"
@@ -533,13 +533,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb52d4b1-dd59-4e45-9bb8-9ed8f70909da"
+ "f420dd10-00fd-4cbe-ac5a-59881ba1616e"
],
"If-Match": [
"*"
@@ -551,7 +551,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -565,25 +565,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4b6cbb9d-5bfe-43c9-bd0b-35dbd8830ed6"
+ "00a72db7-6c6e-4ff1-ac47-6fc9ef13935f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14995"
],
"x-ms-correlation-request-id": [
- "e4a411db-28fc-43bc-a752-f1bfc52d018a"
+ "68913cdb-166a-445c-abd2-64cc1fd4f29d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193502Z:e4a411db-28fc-43bc-a752-f1bfc52d018a"
+ "WESTUS:20200721T164219Z:68913cdb-166a-445c-abd2-64cc1fd4f29d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:02 GMT"
+ "Tue, 21 Jul 2020 16:42:19 GMT"
],
"Expires": [
"-1"
@@ -596,13 +596,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3af9f7c7-2935-4b09-850a-74b731f97407"
+ "e39f2f81-e3bc-4438-b729-8849a4054a6e"
],
"Accept-Language": [
"en-US"
@@ -611,7 +611,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -625,25 +625,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "31290412-8d16-4433-acfe-a5005af50fc3"
+ "e20e6a33-26ee-42ff-9c77-123ca70ef5d1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11978"
],
"x-ms-correlation-request-id": [
- "04009a8f-c8a6-4f6b-89f3-e7f5acfffac6"
+ "afd8b5c1-9298-4bf3-a18e-82fb90bbc030"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193503Z:04009a8f-c8a6-4f6b-89f3-e7f5acfffac6"
+ "WESTUS:20200721T164219Z:afd8b5c1-9298-4bf3-a18e-82fb90bbc030"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:02 GMT"
+ "Tue, 21 Jul 2020 16:42:19 GMT"
],
"Content-Length": [
"82"
@@ -665,7 +665,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0342a5f8-9e90-4227-b12b-7f48f336e08f"
+ "fc8e6061-30c6-4969-a5cc-e92ff1ccd5d1"
],
"Accept-Language": [
"en-US"
@@ -674,7 +674,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -688,25 +688,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6db782ee-6917-4602-8607-f6aca0981a12"
+ "d4d7c0dc-d716-4244-ba22-cdff788dffb2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11977"
],
"x-ms-correlation-request-id": [
- "c07a3beb-5a4d-4b36-8b89-662f5310e830"
+ "66dd85ea-39b1-4378-9b39-47a6d3270470"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193503Z:c07a3beb-5a4d-4b36-8b89-662f5310e830"
+ "WESTUS:20200721T164220Z:66dd85ea-39b1-4378-9b39-47a6d3270470"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:02 GMT"
+ "Tue, 21 Jul 2020 16:42:19 GMT"
],
"Content-Length": [
"973"
@@ -718,17 +718,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2861a2ca60123002319d\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab2861a2ca60123002319d\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab2861a2ca60123002319e\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2866a2ca6012300231a1\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab2866a2ca6012300231a1\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab2866a2ca6012300231a2\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ae6a2ca600fe4c29711\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171ae6a2ca600fe4c29711\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171ae6a2ca600fe4c29712\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171aeba2ca600fe4c29715\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171aeba2ca600fe4c29715\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171aeba2ca600fe4c29716\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2861a2ca60123002319d?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyODYxYTJjYTYwMTIzMDAyMzE5ZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ae6a2ca600fe4c29711?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWU2YTJjYTYwMGZlNGMyOTcxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "662ecf4a-06b6-4843-80cc-251947efce60"
+ "855adfb8-0f87-4eb1-b4e1-61906bc81d71"
],
"If-Match": [
"*"
@@ -740,7 +740,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -754,25 +754,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5a43f4f6-430e-4dc7-a8a7-1afbf9f674c7"
+ "1d242caf-a968-446b-a9cf-f984b3609c1a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14994"
],
"x-ms-correlation-request-id": [
- "d9c99621-b69b-429f-95ca-982d26bfd25b"
+ "74bab8d7-e731-466c-9a94-4ab2fad07c22"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193504Z:d9c99621-b69b-429f-95ca-982d26bfd25b"
+ "WESTUS:20200721T164220Z:74bab8d7-e731-466c-9a94-4ab2fad07c22"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:03 GMT"
+ "Tue, 21 Jul 2020 16:42:19 GMT"
],
"Expires": [
"-1"
@@ -785,13 +785,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2866a2ca6012300231a1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyODY2YTJjYTYwMTIzMDAyMzFhMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171aeba2ca600fe4c29715?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWViYTJjYTYwMGZlNGMyOTcxNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2bd18a1-cf21-4332-807d-a663bc4aa6bc"
+ "8c37fe9b-ed22-4cb5-8dbd-9ae10c1e2c94"
],
"If-Match": [
"*"
@@ -803,7 +803,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -817,25 +817,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7d0fb1fa-e49d-4e61-bce4-9c00e65e3d42"
+ "4be6222b-268f-409a-8d2c-f7940ca86fa9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14993"
],
"x-ms-correlation-request-id": [
- "07a6da6b-2119-4654-94ba-4367d41500d5"
+ "d8e15bef-529f-4a94-be62-aef8d33d3ecd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193504Z:07a6da6b-2119-4654-94ba-4367d41500d5"
+ "WESTUS:20200721T164220Z:d8e15bef-529f-4a94-be62-aef8d33d3ecd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:35:03 GMT"
+ "Tue, 21 Jul 2020 16:42:20 GMT"
],
"Expires": [
"-1"
@@ -850,11 +850,11 @@
],
"Names": {
"": [
- "ps5774",
- "ps6345",
- "ps1005",
- "ps6995",
- "ps9135"
+ "ps2099",
+ "ps10",
+ "ps2857",
+ "ps2470",
+ "ps9053"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json
index 461fa996ba27..4b2c66fbe27f 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "343b8612-6c2c-4678-999d-db1ef7cd553e"
+ "ef37f4a9-7aef-4fe0-b415-6a32799263db"
],
"Accept-Language": [
"en-US"
@@ -16,13 +16,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "238"
+ "237"
]
},
"ResponseHeaders": {
@@ -33,13 +33,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADCY=\""
+ "\"AAAAAAAAPnI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6c3a0e0-94ee-4470-bd05-8c0677bcbdd3"
+ "af77b17d-33c3-437f-9e57-2608dc3af8fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,19 +48,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "82a4b5e6-306e-444e-b4e3-046f97f370a5"
+ "f24711d8-e813-47f6-aed9-c1199b7043df"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194004Z:82a4b5e6-306e-444e-b4e3-046f97f370a5"
+ "WESTUS:20200721T164733Z:f24711d8-e813-47f6-aed9-c1199b7043df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:04 GMT"
+ "Tue, 21 Jul 2020 16:47:33 GMT"
],
"Content-Length": [
- "515"
+ "512"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8016cf55-e145-4103-b840-b315a97b33e7"
+ "e87cf74d-270a-470b-b3c7-25e1b864a4bc"
],
"Accept-Language": [
"en-US"
@@ -88,7 +88,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADCY=\""
+ "\"AAAAAAAAPnI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f8eddb57-41d0-4a90-bc92-36af80c6751c"
+ "3ae0ed39-a4bb-4180-9d0f-e2b8bd531766"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,19 +114,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "a95b62ae-00fa-47dc-9d47-7dde6bb777c6"
+ "55737691-948b-424e-88e2-f16cc89b0c23"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194005Z:a95b62ae-00fa-47dc-9d47-7dde6bb777c6"
+ "WESTUS:20200721T164733Z:55737691-948b-424e-88e2-f16cc89b0c23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:04 GMT"
+ "Tue, 21 Jul 2020 16:47:33 GMT"
],
"Content-Length": [
- "515"
+ "512"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -135,17 +135,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad38559c-aa2d-4025-9244-7d33729102c0"
+ "3a03fa26-36c1-4198-8f70-35bca5e561d5"
],
"Accept-Language": [
"en-US"
@@ -154,7 +154,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,13 +165,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADCY=\""
+ "\"AAAAAAAAPnI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8510bf99-422e-45b0-9236-13fbb4395e80"
+ "20e5f4f8-a09d-4901-a125-cee501bce9bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,19 +180,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "44c1356b-6280-4ffd-9bbd-17a331c1d8ac"
+ "2452d072-315c-4fbb-bf12-5326ecd19613"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194005Z:44c1356b-6280-4ffd-9bbd-17a331c1d8ac"
+ "WESTUS:20200721T164734Z:2452d072-315c-4fbb-bf12-5326ecd19613"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:04 GMT"
+ "Tue, 21 Jul 2020 16:47:33 GMT"
],
"Content-Length": [
- "515"
+ "512"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -201,17 +201,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cdff35f4-7298-4dd4-87dd-5cbcd445e832"
+ "6f22ceb8-a53b-48fc-a630-18723efa7dc8"
],
"Accept-Language": [
"en-US"
@@ -220,7 +220,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,13 +231,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADDs=\""
+ "\"AAAAAAAAPoc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "496efa85-7efc-4f49-85d5-978cca39fcce"
+ "b2628fbd-16d4-473a-b10a-5e0c9c47c0f3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,19 +246,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "508b2211-1097-467e-b6f8-8bd183a8d9b3"
+ "3c2a648e-ce0b-4462-a391-33b548f98091"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194037Z:508b2211-1097-467e-b6f8-8bd183a8d9b3"
+ "WESTUS:20200721T164808Z:3c2a648e-ce0b-4462-a391-33b548f98091"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:36 GMT"
+ "Tue, 21 Jul 2020 16:48:08 GMT"
],
"Content-Length": [
- "515"
+ "512"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -267,17 +267,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff3c4487-8947-4bf3-8a7e-202ef636c703"
+ "54212c98-7e4b-4540-88ea-d676c3010954"
],
"Accept-Language": [
"en-US"
@@ -286,7 +286,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,13 +297,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADDs=\""
+ "\"AAAAAAAAPoc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "175a017e-b7c7-4802-9cc3-394919d12812"
+ "da6ede01-5fa9-49ae-ac57-68f6f86cbc40"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,19 +312,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "1be82cd8-4132-4673-b460-162ed0b83aaa"
+ "7bf7dde9-d7a8-4355-9074-1d507779e97a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194037Z:1be82cd8-4132-4673-b460-162ed0b83aaa"
+ "WESTUS:20200721T164808Z:7bf7dde9-d7a8-4355-9074-1d507779e97a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:36 GMT"
+ "Tue, 21 Jul 2020 16:48:08 GMT"
],
"Content-Length": [
- "515"
+ "512"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,17 +333,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab4ca26c-58d3-4225-823e-2ca6ccb311d3"
+ "51f328d3-e9d2-44de-b903-ed7476580503"
],
"Accept-Language": [
"en-US"
@@ -352,7 +352,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -366,7 +366,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4a33e5bc-f450-44fd-81c7-354aa6097dc9"
+ "3f250568-a73d-479e-94fd-cb3e4ca91d9b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "ed1e8159-21eb-4c6e-8908-b37e73af5153"
+ "24dd91e1-c856-40ee-b969-d38abc42bdde"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194038Z:ed1e8159-21eb-4c6e-8908-b37e73af5153"
+ "WESTUS:20200721T164809Z:24dd91e1-c856-40ee-b969-d38abc42bdde"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:37 GMT"
+ "Tue, 21 Jul 2020 16:48:09 GMT"
],
"Content-Length": [
"97"
@@ -400,13 +400,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7d3f2c1-1402-42c9-97ca-b6d3aae0a032"
+ "708691e6-fbe2-4c94-acb8-977a5ac3f4be"
],
"Accept-Language": [
"en-US"
@@ -415,7 +415,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -429,7 +429,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8af0b23f-8662-4907-91b1-93e823885d69"
+ "7818a890-99ac-4437-bc06-208a482e95c1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +438,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "5a72433c-adfe-42c1-bebc-c886bf7ca16c"
+ "182a256f-ad97-437f-9a38-a497954c26d5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194038Z:5a72433c-adfe-42c1-bebc-c886bf7ca16c"
+ "WESTUS:20200721T164809Z:182a256f-ad97-437f-9a38-a497954c26d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:37 GMT"
+ "Tue, 21 Jul 2020 16:48:09 GMT"
],
"Content-Length": [
"97"
@@ -463,13 +463,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps9140',properties/displayName)&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM5MTQwJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps8048',properties/displayName)&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM4MDQ4Jyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0757ece-4006-4d87-8513-4a55b9b7b924"
+ "d6d525df-96e8-4a1f-92dc-d3717ada4952"
],
"Accept-Language": [
"en-US"
@@ -478,7 +478,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -492,7 +492,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2f2860c0-274f-4d37-85ee-0b98bc069082"
+ "ed77e26c-246d-48f4-a418-0c22610b3123"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,19 +501,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "5f30d561-ba58-4e9a-afbb-35926da0e8bc"
+ "64a85af7-3377-404c-8bb7-21243d5c2125"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194005Z:5f30d561-ba58-4e9a-afbb-35926da0e8bc"
+ "WESTUS:20200721T164733Z:64a85af7-3377-404c-8bb7-21243d5c2125"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:04 GMT"
+ "Tue, 21 Jul 2020 16:47:33 GMT"
],
"Content-Length": [
- "599"
+ "596"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -522,7 +522,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
@@ -532,7 +532,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4a89997-3339-4fbf-9237-7ec4bfd531b1"
+ "9b779053-7834-4e20-b515-ca38161ac936"
],
"Accept-Language": [
"en-US"
@@ -541,7 +541,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -555,7 +555,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cbe80ea2-8b2e-4f80-807c-2d72002457ed"
+ "5e011acb-91df-47ac-babf-19354c03bf14"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -564,19 +564,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "52290c85-dc0d-4c66-aeb8-587b4332c4aa"
+ "e92b2ff9-c808-4aa7-b4e4-9ec8335a2356"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194005Z:52290c85-dc0d-4c66-aeb8-587b4332c4aa"
+ "WESTUS:20200721T164734Z:e92b2ff9-c808-4aa7-b4e4-9ec8335a2356"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:05 GMT"
+ "Tue, 21 Jul 2020 16:47:34 GMT"
],
"Content-Length": [
- "599"
+ "596"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -585,17 +585,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc3ba044-597e-4d2b-b6a8-1a006bf405bf"
+ "122a9cdd-0e10-4ef3-86ba-226e6072dac9"
],
"Accept-Language": [
"en-US"
@@ -604,7 +604,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -615,13 +615,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADCY=\""
+ "\"AAAAAAAAPnI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "207fe8ba-5304-47b5-ad76-1c88d624a517"
+ "2637de32-5039-4ad5-9714-b15693aa046d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -630,16 +630,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "39c878c7-f9be-43e5-815a-c3f82bd95fbe"
+ "1c161a1d-6d6c-43d9-ba45-8f750a2e540a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194005Z:39c878c7-f9be-43e5-815a-c3f82bd95fbe"
+ "WESTUS:20200721T164734Z:1c161a1d-6d6c-43d9-ba45-8f750a2e540a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:05 GMT"
+ "Tue, 21 Jul 2020 16:47:34 GMT"
],
"Content-Length": [
"21"
@@ -655,13 +655,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5bc0cc39-b713-4b4b-a0fb-d1adf8c32e8e"
+ "af4dd7a2-8f2d-48e3-a58c-3ce1a7dbbba9"
],
"Accept-Language": [
"en-US"
@@ -670,7 +670,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,13 +681,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADDs=\""
+ "\"AAAAAAAAPoc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dee45734-d0f2-4f49-9d67-539d083926ad"
+ "aa7e9760-5e3f-4c69-af03-b1b3b66677cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +696,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "2014878f-2cc8-43ae-9ea8-30063282d599"
+ "f8779db9-23db-4fee-9a8a-2b7071a345d6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194037Z:2014878f-2cc8-43ae-9ea8-30063282d599"
+ "WESTUS:20200721T164808Z:f8779db9-23db-4fee-9a8a-2b7071a345d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:36 GMT"
+ "Tue, 21 Jul 2020 16:48:08 GMT"
],
"Content-Length": [
"25"
@@ -717,17 +717,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps8189\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps5046\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"openapi: 3.0.1\\r\\nservers:\\r\\n - url: 'https://developer.uspto.gov/ds-api'\\r\\ninfo:\\r\\n description: >-\\r\\n The Data Set API (DSAPI) allows the public users to discover and search\\r\\n USPTO exported data sets. This is a generic API that allows USPTO users to\\r\\n make any CSV based data files searchable through API. With the help of GET\\r\\n call, it returns the list of data fields that are searchable. With the help\\r\\n of POST call, data can be fetched based on the filters on the field names.\\r\\n Please note that POST call is used to search the actual data. The reason for\\r\\n the POST call is that it allows users to specify any complex search criteria\\r\\n without worry about the GET size limitations as well as encoding of the\\r\\n input parameters.\\r\\n version: 1.0.0\\r\\n title: USPTO Data Set API\\r\\n contact:\\r\\n name: Open Data Portal\\r\\n url: 'https://developer.uspto.gov'\\r\\n email: developer@uspto.gov\\r\\ntags:\\r\\n - name: metadata\\r\\n description: Find out about the data sets\\r\\n - name: search\\r\\n description: Search a data set\\r\\npaths:\\r\\n /:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n operationId: list-data-sets\\r\\n summary: List available data sets\\r\\n responses:\\r\\n '200':\\r\\n description: Returns a list of data sets\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: '#/components/schemas/dataSetList'\\r\\n example:\\r\\n {\\r\\n \\\"total\\\": 2,\\r\\n \\\"apis\\\": [\\r\\n {\\r\\n \\\"apiKey\\\": \\\"oa_citations\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/oa_citations/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json\\\"\\r\\n },\\r\\n {\\r\\n \\\"apiKey\\\": \\\"cancer_moonshot\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json\\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n /{dataset}/{version}/fields:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n summary: >-\\r\\n Provides the general information about the API and the list of fields\\r\\n that can be used to query the dataset.\\r\\n description: >-\\r\\n This GET API returns the list of all the searchable field names that are\\r\\n in the oa_citations. Please see the 'fields' attribute which returns an\\r\\n array of field names. Each field or a combination of fields can be\\r\\n searched using the syntax options shown below.\\r\\n operationId: list-searchable-fields\\r\\n parameters:\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset.'\\r\\n required: true\\r\\n example: \\\"oa_citations\\\"\\r\\n schema:\\r\\n type: string\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n example: \\\"v1\\\"\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: >-\\r\\n The dataset API for the given version is found and it is accessible\\r\\n to consume.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n '404':\\r\\n description: >-\\r\\n The combination of dataset name and version is not found in the\\r\\n system or it is not published yet to be consumed by public.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n /{dataset}/{version}/records:\\r\\n post:\\r\\n tags:\\r\\n - search\\r\\n summary: >-\\r\\n Provides search capability for the data set with the given search\\r\\n criteria.\\r\\n description: >-\\r\\n This API is based on Solr/Lucense Search. The data is indexed using\\r\\n SOLR. This GET API returns the list of all the searchable field names\\r\\n that are in the Solr Index. Please see the 'fields' attribute which\\r\\n returns an array of field names. Each field or a combination of fields\\r\\n can be searched using the Solr/Lucene Syntax. Please refer\\r\\n https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for\\r\\n the query syntax. List of field names that are searchable can be\\r\\n determined using above GET api.\\r\\n operationId: perform-search\\r\\n parameters:\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: v1\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset. In this case, the default value is oa_citations'\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: oa_citations\\r\\n responses:\\r\\n '200':\\r\\n description: successful operation\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n additionalProperties:\\r\\n type: object\\r\\n '404':\\r\\n description: No matching record found for the given criteria.\\r\\n requestBody:\\r\\n content:\\r\\n application/x-www-form-urlencoded:\\r\\n schema:\\r\\n type: object\\r\\n properties:\\r\\n criteria:\\r\\n description: >-\\r\\n Uses Lucene Query Syntax in the format of\\r\\n propertyName:value, propertyName:[num1 TO num2] and date\\r\\n range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the\\r\\n response please see the 'docs' element which has the list of\\r\\n record objects. Each record structure would consist of all\\r\\n the fields and their corresponding values.\\r\\n type: string\\r\\n default: '*:*'\\r\\n start:\\r\\n description: Starting record number. Default value is 0.\\r\\n type: integer\\r\\n default: 0\\r\\n rows:\\r\\n description: >-\\r\\n Specify number of rows to be returned. If you run the search\\r\\n with default values, in the response you will see 'numFound'\\r\\n attribute which will tell the number of records available in\\r\\n the dataset.\\r\\n type: integer\\r\\n default: 100\\r\\n required:\\r\\n - criteria\\r\\ncomponents:\\r\\n schemas:\\r\\n dataSetList:\\r\\n type: object\\r\\n properties:\\r\\n total:\\r\\n type: integer\\r\\n apis:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n properties:\\r\\n apiKey:\\r\\n type: string\\r\\n description: To be used as a dataset parameter value\\r\\n apiVersionNumber:\\r\\n type: string\\r\\n description: To be used as a version parameter value\\r\\n apiUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: \\\"The URL describing the dataset's fields\\\"\\r\\n apiDocumentationUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: A URL to the API console for each API\",\r\n \"format\": \"openapi\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8df36b43-c6f4-49db-80f7-f918898a7434"
+ "73ba190c-0c2d-4e9a-b3f9-ba0900038c7f"
],
"Accept-Language": [
"en-US"
@@ -736,7 +736,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -753,13 +753,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01&asyncId=5eab2995a2ca6012300231e8&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01&asyncId=5f171c26a2ca600fe4c2975c&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a4ce165-d066-46eb-ae13-697ed3dff9f7"
+ "fd612285-0f19-424c-b7ec-839717776688"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -768,16 +768,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7d700635-34c8-4964-b638-94d239f0b0a7"
+ "d5065b7a-c048-42d6-a779-5865233598c5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194006Z:7d700635-34c8-4964-b638-94d239f0b0a7"
+ "WESTUS:20200721T164734Z:d5065b7a-c048-42d6-a779-5865233598c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:05 GMT"
+ "Tue, 21 Jul 2020 16:47:34 GMT"
],
"Expires": [
"-1"
@@ -790,8 +790,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01&asyncId=5eab2995a2ca6012300231e8&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjk5NWEyY2E2MDEyMzAwMjMxZTgmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01&asyncId=5f171c26a2ca600fe4c2975c&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWMyNmEyY2E2MDBmZTRjMjk3NWMmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -799,7 +799,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -810,13 +810,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADCc=\""
+ "\"AAAAAAAAPnM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f0ab58a3-b7b7-437d-aa6b-d254dbcad3a9"
+ "12e4de5a-f4e8-4bbe-aca2-5992afd3b8e2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -825,16 +825,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "75a272ba-0d8f-4ffb-b0b6-5c02b6575a47"
+ "6b790212-91bd-4ee0-8b39-39c1f91382b2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194036Z:75a272ba-0d8f-4ffb-b0b6-5c02b6575a47"
+ "WESTUS:20200721T164804Z:6b790212-91bd-4ee0-8b39-39c1f91382b2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:35 GMT"
+ "Tue, 21 Jul 2020 16:48:04 GMT"
],
"Content-Length": [
"1381"
@@ -846,17 +846,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c309ac6-79b1-459b-9416-5e3f747df130"
+ "03607d99-408e-4b3d-9d7b-b09fb9ec2f29"
],
"Accept-Language": [
"en-US"
@@ -865,7 +865,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -876,13 +876,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADCc=\""
+ "\"AAAAAAAAPnM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "582f0248-728c-4e10-bc4c-e28f89fb3536"
+ "ef3980e6-edf3-4552-a5cf-4cc425b12f9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -891,16 +891,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "a438b0f0-380f-4717-9eb5-67a4fcc2d813"
+ "7d376350-fe9a-4ee1-9440-1daf0544b84a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194036Z:a438b0f0-380f-4717-9eb5-67a4fcc2d813"
+ "WESTUS:20200721T164805Z:7d376350-fe9a-4ee1-9440-1daf0544b84a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:35 GMT"
+ "Tue, 21 Jul 2020 16:48:04 GMT"
],
"Content-Length": [
"1381"
@@ -912,17 +912,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711%3Brev%3D1?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"ps9234\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"ps214\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c5d952f-5c56-40ce-aecf-bc0ed7bb2d63"
+ "234c4c37-5b50-4ab5-bbd6-483e83c7cab2"
],
"If-Match": [
"*"
@@ -934,13 +934,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1276"
+ "1275"
]
},
"ResponseHeaders": {
@@ -951,13 +951,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADDc=\""
+ "\"AAAAAAAAPoM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e6878b6-d3af-4b69-93c2-95626067c7ee"
+ "b06973e7-cae7-459b-b8bc-0b4701f0f1f4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -966,19 +966,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "3fdae47c-5d73-4744-8816-c10115311335"
+ "0f247c43-ade3-4432-8fe1-f147629e1450"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194036Z:3fdae47c-5d73-4744-8816-c10115311335"
+ "WESTUS:20200721T164807Z:0f247c43-ade3-4432-8fe1-f147629e1450"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:35 GMT"
+ "Tue, 21 Jul 2020 16:48:07 GMT"
],
"Content-Length": [
- "1519"
+ "1518"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -987,17 +987,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"ps9234\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"ps214\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps8189\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5046\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d843387a-fa7f-45f8-a3e9-78f635a8102e"
+ "011b5086-3364-4e04-884b-d5e70c405f8e"
],
"If-Match": [
"*"
@@ -1009,7 +1009,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1029,7 +1029,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1eb711b1-2688-4356-b856-a1e02348d9b2"
+ "6318700a-08ab-4a32-a6cd-9ef8c6214a0e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1038,16 +1038,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "126f53cc-ba6b-4c36-bc44-06928e0fd63f"
+ "e0e18dff-b2cf-4412-b707-a2dfe2b661de"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194037Z:126f53cc-ba6b-4c36-bc44-06928e0fd63f"
+ "WESTUS:20200721T164808Z:e0e18dff-b2cf-4412-b707-a2dfe2b661de"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:36 GMT"
+ "Tue, 21 Jul 2020 16:48:07 GMT"
],
"Expires": [
"-1"
@@ -1057,13 +1057,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf5084b4-3fee-4ef8-b5aa-841a9f1457f5"
+ "fe2c48c2-cf07-470c-9272-8379a30bdc0d"
],
"If-Match": [
"*"
@@ -1075,7 +1075,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1089,7 +1089,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77be8615-97cf-4d0a-b567-42a0db60e5a6"
+ "0dfd68e7-ac4b-49be-9429-125db1292dc3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1098,16 +1098,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "f835bc46-f0f9-453e-b0cc-35213b0dafdc"
+ "38739df0-78d7-45f5-bf74-d7f170dde856"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194037Z:f835bc46-f0f9-453e-b0cc-35213b0dafdc"
+ "WESTUS:20200721T164808Z:38739df0-78d7-45f5-bf74-d7f170dde856"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:36 GMT"
+ "Tue, 21 Jul 2020 16:48:08 GMT"
],
"Expires": [
"-1"
@@ -1120,13 +1120,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?deleteRevisions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0dd022b-2dd8-4c3f-86c7-2bae02e0ff44"
+ "d87d97ef-3945-49ef-b879-c8b58e873586"
],
"If-Match": [
"*"
@@ -1138,7 +1138,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1152,7 +1152,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f8f2298e-001e-4865-8a70-fe7a08e06b7e"
+ "1d9a9076-ca95-4260-8894-53c7aaae644c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1161,16 +1161,16 @@
"14997"
],
"x-ms-correlation-request-id": [
- "337a3b2e-b51d-4fbc-bbbe-2ae3c904660f"
+ "64bf4388-d251-4c84-b9c3-54cc19a575a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194038Z:337a3b2e-b51d-4fbc-bbbe-2ae3c904660f"
+ "WESTUS:20200721T164809Z:64bf4388-d251-4c84-b9c3-54cc19a575a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:37 GMT"
+ "Tue, 21 Jul 2020 16:48:09 GMT"
],
"Expires": [
"-1"
@@ -1180,13 +1180,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8dc00c06-3994-4fe2-8d14-ce2d7bfe1292"
+ "71022dd2-14ca-40bd-8c6e-cf062cb3fec3"
],
"If-Match": [
"*"
@@ -1198,7 +1198,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1212,7 +1212,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "664f437e-9ceb-4e90-9ad3-f554d28212cd"
+ "be73a1ce-e138-4a85-b3ed-e8921df6c2e5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1221,16 +1221,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "57ed1a63-a761-433e-8366-1c7088d5c43d"
+ "292978a5-be48-4f0b-886e-b2ee93a4339c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194037Z:57ed1a63-a761-433e-8366-1c7088d5c43d"
+ "WESTUS:20200721T164809Z:292978a5-be48-4f0b-886e-b2ee93a4339c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:37 GMT"
+ "Tue, 21 Jul 2020 16:48:08 GMT"
],
"Expires": [
"-1"
@@ -1243,13 +1243,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fd93d22-32ee-45ae-9859-c30ec6f0c504"
+ "ca606590-4a08-43fd-88ee-5ca902be2c18"
],
"If-Match": [
"*"
@@ -1261,7 +1261,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1275,7 +1275,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ba912561-d3e4-4695-9a0b-8b2746d0d9d1"
+ "9ec0cfa1-28cc-4b48-9739-1825c5eb1401"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1284,16 +1284,16 @@
"14996"
],
"x-ms-correlation-request-id": [
- "5d54c379-32cf-4ec3-8fcd-b62d36e3826d"
+ "b392a62c-1c53-42f3-a86e-cfce743ff0c1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194038Z:5d54c379-32cf-4ec3-8fcd-b62d36e3826d"
+ "WESTUS:20200721T164809Z:b392a62c-1c53-42f3-a86e-cfce743ff0c1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:37 GMT"
+ "Tue, 21 Jul 2020 16:48:09 GMT"
],
"Expires": [
"-1"
@@ -1305,12 +1305,12 @@
],
"Names": {
"": [
- "ps9234",
- "ps8888",
- "ps9140",
- "ps9505",
- "ps2101",
- "ps8189"
+ "ps214",
+ "ps7711",
+ "ps8048",
+ "ps991",
+ "ps1003",
+ "ps5046"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json
index 7d658cfa92a7..3ed1d213e2be 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ae6d674-2cda-4b07-a079-31953fd241ed"
+ "952a4f0a-56ac-4edb-9ca6-29338902648d"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,25 +30,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "27b8a4ef-5bb1-4a2f-be44-742bd3009f0c"
+ "7264b6b7-b403-45a2-a6d8-3a40c2f4929b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11989"
],
"x-ms-correlation-request-id": [
- "b4b61041-f974-4988-9039-6bd6bf042e75"
+ "2c24647c-0259-4b48-9a15-e4645a27ee88"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193445Z:b4b61041-f974-4988-9039-6bd6bf042e75"
+ "WESTUS:20200721T164202Z:2c24647c-0259-4b48-9a15-e4645a27ee88"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:45 GMT"
+ "Tue, 21 Jul 2020 16:42:02 GMT"
],
"Content-Length": [
"729"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c1dd90d-5021-4e14-96f2-6dd4a4f69699"
+ "1cfeca14-bb8c-46b6-a7e0-c0519a5ef6f7"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,25 +93,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bf78368e-22b6-402f-b27e-435cc0137272"
+ "c4dbf2df-de59-43d4-b44e-99537248f8e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11988"
],
"x-ms-correlation-request-id": [
- "68689bff-3839-459a-a015-a61fde355f26"
+ "296b6985-87d4-40b8-a69d-6024960055d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193445Z:68689bff-3839-459a-a015-a61fde355f26"
+ "WESTUS:20200721T164202Z:296b6985-87d4-40b8-a69d-6024960055d7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:45 GMT"
+ "Tue, 21 Jul 2020 16:42:02 GMT"
],
"Content-Length": [
"7423"
@@ -133,7 +133,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb2ef313-b6e6-44ee-9b5b-3cae57539be3"
+ "0fe5ecf7-246f-43a7-af8c-352b82b40e05"
],
"Accept-Language": [
"en-US"
@@ -142,7 +142,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -153,31 +153,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACnY=\""
+ "\"AAAAAAAAPJA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2f0ffb25-fe2e-4304-b571-d361df6c645f"
+ "fd97c7e2-f891-4de1-82b1-499df65279ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11987"
],
"x-ms-correlation-request-id": [
- "f3d721da-3e23-4366-9a87-b29218575503"
+ "214985f1-7ac1-4676-866d-7c3ca6adb3c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193446Z:f3d721da-3e23-4366-9a87-b29218575503"
+ "WESTUS:20200721T164203Z:214985f1-7ac1-4676-866d-7c3ca6adb3c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:45 GMT"
+ "Tue, 21 Jul 2020 16:42:03 GMT"
],
"Content-Length": [
"1269"
@@ -199,7 +199,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "588517b6-cba6-4a88-8cdf-35b7fe28d036"
+ "5d3b94ba-eb26-43be-9001-674d041b9d99"
],
"Accept-Language": [
"en-US"
@@ -208,7 +208,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,25 +225,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f59189c5-dc6a-49fb-bbaf-da12b8ed37b9"
+ "31562778-119b-4fcb-a2cd-7707cdf3e651"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11986"
],
"x-ms-correlation-request-id": [
- "be8772d6-7700-4b1d-833d-450c0f9d8fb2"
+ "6d8e297a-4d00-474c-8af0-12fe7bd8e0a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193446Z:be8772d6-7700-4b1d-833d-450c0f9d8fb2"
+ "WESTUS:20200721T164203Z:6d8e297a-4d00-474c-8af0-12fe7bd8e0a0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:45 GMT"
+ "Tue, 21 Jul 2020 16:42:03 GMT"
],
"Content-Length": [
"892"
@@ -265,7 +265,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ccc11508-4a27-449d-8f7f-61540c7edfe6"
+ "8bf56f55-1574-4802-a238-12bbf747977a"
],
"Accept-Language": [
"en-US"
@@ -274,7 +274,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,25 +291,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "111996bf-dc64-4b97-971f-02bd4aa286f6"
+ "793064f0-3d61-4a22-919d-b3ff2817aa9c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11985"
],
"x-ms-correlation-request-id": [
- "89c8eabd-5dd2-4d91-8089-d5d1cc6e0994"
+ "966977e2-6d73-4cb2-b931-8a9deed08bf3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193446Z:89c8eabd-5dd2-4d91-8089-d5d1cc6e0994"
+ "WESTUS:20200721T164203Z:966977e2-6d73-4cb2-b931-8a9deed08bf3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:46 GMT"
+ "Tue, 21 Jul 2020 16:42:03 GMT"
],
"Content-Length": [
"902"
@@ -331,7 +331,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d008b8d-2f7c-4337-ad7e-58a788b993df"
+ "7306b9d4-62a5-48d2-8887-49e34c45a161"
],
"Accept-Language": [
"en-US"
@@ -340,7 +340,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,25 +357,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1675a094-8277-4842-a11c-059515f31b4f"
+ "558d67fe-05a5-4cd7-b006-c744cb3d106d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11984"
],
"x-ms-correlation-request-id": [
- "95049791-2bee-4f0c-8492-a1c46cc1828b"
+ "b1aee6d6-b2ce-41e4-9f69-3266a454738b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193446Z:95049791-2bee-4f0c-8492-a1c46cc1828b"
+ "WESTUS:20200721T164203Z:b1aee6d6-b2ce-41e4-9f69-3266a454738b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:46 GMT"
+ "Tue, 21 Jul 2020 16:42:03 GMT"
],
"Content-Length": [
"897"
@@ -397,7 +397,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "529c872c-d6c4-4de7-bb5d-01bd2dbf6ed1"
+ "4c7506c4-69c6-47ff-8b12-6a31bed9b7f2"
],
"Accept-Language": [
"en-US"
@@ -406,7 +406,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,25 +423,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b4886ab-c0c1-49b1-9bad-aceb23cb372c"
+ "90a10ff4-222d-4163-8fed-1d0480fad4d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11983"
],
"x-ms-correlation-request-id": [
- "a720c7ab-6c92-475c-ba8e-cd06149353f4"
+ "ee27a150-aa02-488d-9c15-fcc4398cbdb4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193447Z:a720c7ab-6c92-475c-ba8e-cd06149353f4"
+ "WESTUS:20200721T164204Z:ee27a150-aa02-488d-9c15-fcc4398cbdb4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:46 GMT"
+ "Tue, 21 Jul 2020 16:42:03 GMT"
],
"Content-Length": [
"1476"
@@ -463,7 +463,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3f5732f-47b4-43af-9b9b-319d2738e62c"
+ "5a6b9e32-c1a1-4e0b-8c32-5bdc7af09381"
],
"Accept-Language": [
"en-US"
@@ -472,7 +472,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,25 +489,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96b2c70e-1b31-4730-b7bb-7bf123a1697a"
+ "e4ddfa40-08f5-434f-9041-a27bf75b9119"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11982"
],
"x-ms-correlation-request-id": [
- "ef12964d-bc9b-4ee4-820e-2c8aa5536cf3"
+ "025a0129-1bc7-4299-8bca-912a95582af6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193447Z:ef12964d-bc9b-4ee4-820e-2c8aa5536cf3"
+ "WESTUS:20200721T164204Z:025a0129-1bc7-4299-8bca-912a95582af6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:46 GMT"
+ "Tue, 21 Jul 2020 16:42:03 GMT"
],
"Content-Length": [
"1553"
@@ -523,13 +523,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps1322\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5354\",\r\n \"description\": \"ps6705\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3221\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3221\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps684\",\r\n \"description\": \"ps5134\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps7323\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps7323\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps2520\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2744\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4540\",\r\n \"sample\": \"ps5512\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps4302\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps6872\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2149\",\r\n \"description\": \"ps9272\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6452\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6452\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8901\",\r\n \"description\": \"ps9433\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4132\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4132\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7193\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5168\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1997\",\r\n \"sample\": \"ps1402\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps2519\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3d6d563-1008-4852-9f70-658951d3109e"
+ "8118a9ac-ca59-43ed-9f7a-0d5dcdef15d6"
],
"Accept-Language": [
"en-US"
@@ -538,13 +538,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1565"
+ "1566"
]
},
"ResponseHeaders": {
@@ -555,34 +555,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACxo=\""
+ "\"AAAAAAAAPWA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3303b70f-efd1-4214-812f-194e484ee8fe"
+ "dcad0a36-5caf-46f6-8c01-d13a190b0e1b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1196"
],
"x-ms-correlation-request-id": [
- "c8bbe83f-e87e-4698-93ed-a0fda956234b"
+ "6fc67636-589c-4cf0-9832-df65a7008de6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193448Z:c8bbe83f-e87e-4698-93ed-a0fda956234b"
+ "WESTUS:20200721T164205Z:6fc67636-589c-4cf0-9832-df65a7008de6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:47 GMT"
+ "Tue, 21 Jul 2020 16:42:05 GMT"
],
"Content-Length": [
- "1802"
+ "1803"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -591,17 +591,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps648\",\r\n \"properties\": {\r\n \"displayName\": \"ps4302\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps1322\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5354\",\r\n \"description\": \"ps6705\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3221\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3221\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps684\",\r\n \"description\": \"ps5134\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps7323\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps7323\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps2520\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2744\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4540\",\r\n \"sample\": \"ps5512\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"displayName\": \"ps2519\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps6872\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2149\",\r\n \"description\": \"ps9272\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6452\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6452\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8901\",\r\n \"description\": \"ps9433\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4132\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4132\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7193\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5168\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1997\",\r\n \"sample\": \"ps1402\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps5508\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps7309\",\r\n \"description\": \"ps7509\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4718\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4718\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8217\",\r\n \"description\": \"ps1547\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3561\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3561\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps6411\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7737\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7928\",\r\n \"sample\": \"ps5087\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps309\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps166\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2955\",\r\n \"description\": \"ps2375\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3663\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3663\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps7\",\r\n \"description\": \"ps5913\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7248\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps6566\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4759\",\r\n \"sample\": \"ps1570\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6140\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd9d7f29-1633-49a2-a3e3-c26477d3ec85"
+ "0980ff52-8612-45fb-9aea-3c2b7cf94890"
],
"If-Match": [
"*"
@@ -613,13 +613,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1594"
+ "1591"
]
},
"ResponseHeaders": {
@@ -633,25 +633,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e1149d1-5496-47eb-aad3-c5cf8d3090ef"
+ "d0482c39-e0fb-454f-8415-41e2bc6d2541"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1195"
],
"x-ms-correlation-request-id": [
- "309c0ef5-41e6-4234-9f77-a5cd1b05a820"
+ "8c2f5c11-8814-4820-bb3a-673bed0058a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193449Z:309c0ef5-41e6-4234-9f77-a5cd1b05a820"
+ "WESTUS:20200721T164206Z:8c2f5c11-8814-4820-bb3a-673bed0058a0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:48 GMT"
+ "Tue, 21 Jul 2020 16:42:06 GMT"
],
"Expires": [
"-1"
@@ -661,13 +661,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fb5afa1-4284-4696-9937-3b5995882514"
+ "cc05b3da-6ff7-4d50-b19f-50b82c686cb6"
],
"Accept-Language": [
"en-US"
@@ -676,7 +676,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,34 +687,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACxw=\""
+ "\"AAAAAAAAPWI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ebb307b9-7bf3-4ebf-8e89-d0c48df98699"
+ "ced03f0e-8892-4160-9b45-ee099b181a4b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11981"
],
"x-ms-correlation-request-id": [
- "e32f3567-517f-4ccc-a51b-cab4a441a9a1"
+ "03a0fe37-abe5-43f9-9f1f-a20b67432986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193449Z:e32f3567-517f-4ccc-a51b-cab4a441a9a1"
+ "WESTUS:20200721T164207Z:03a0fe37-abe5-43f9-9f1f-a20b67432986"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:49 GMT"
+ "Tue, 21 Jul 2020 16:42:06 GMT"
],
"Content-Length": [
- "1885"
+ "1882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -723,17 +723,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps648\",\r\n \"properties\": {\r\n \"displayName\": \"ps309\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps5508\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps7309\",\r\n \"description\": \"ps7509\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4718\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4718\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8217\",\r\n \"description\": \"ps1547\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3561\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3561\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps6411\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7737\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7928\",\r\n \"sample\": \"ps5087\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"displayName\": \"ps6140\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps166\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2955\",\r\n \"description\": \"ps2375\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3663\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3663\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps7\",\r\n \"description\": \"ps5913\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7248\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps6566\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4759\",\r\n \"sample\": \"ps1570\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aae45861-7159-46a6-801a-316f0f265cf8"
+ "96dcddd7-e893-4750-bd09-29a435f2c19c"
],
"Accept-Language": [
"en-US"
@@ -742,7 +742,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,25 +756,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f8c62c76-f7be-4014-b27f-188569c90f3f"
+ "e57ecc49-ba78-492a-8cae-d20869575e35"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11980"
],
"x-ms-correlation-request-id": [
- "35353450-d0a9-490c-b043-fe5bf7447034"
+ "3f9437b5-bea5-487c-b348-8a087880e298"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193450Z:35353450-d0a9-490c-b043-fe5bf7447034"
+ "WESTUS:20200721T164207Z:3f9437b5-bea5-487c-b348-8a087880e298"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:49 GMT"
+ "Tue, 21 Jul 2020 16:42:07 GMT"
],
"Content-Length": [
"85"
@@ -790,13 +790,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b951aff-3dc4-49b5-a506-8a38bee46576"
+ "2b7f803f-35e9-4af9-b1c4-59eca2b67f9c"
],
"If-Match": [
"*"
@@ -808,7 +808,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -822,25 +822,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "29b5cfd7-5df3-4ed1-a972-b3af2340cdbe"
+ "4fe7392e-bf71-419a-b2da-6d3904ee8aa2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "197e7a5d-e8b1-4761-81b1-082bd7bae10a"
+ "dc9fe601-db26-4dde-adb5-166de075c0b9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193450Z:197e7a5d-e8b1-4761-81b1-082bd7bae10a"
+ "WESTUS:20200721T164207Z:dc9fe601-db26-4dde-adb5-166de075c0b9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:49 GMT"
+ "Tue, 21 Jul 2020 16:42:06 GMT"
],
"Expires": [
"-1"
@@ -855,33 +855,33 @@
],
"Names": {
"": [
- "ps648",
- "ps4302",
- "ps1322",
- "ps4621",
- "ps684",
- "ps5134",
- "ps7323",
- "ps5354",
- "ps6705",
- "ps3221",
- "ps2520",
- "ps2744",
- "ps4540",
- "ps5512",
- "ps309",
- "ps5508",
- "ps9896",
- "ps8217",
- "ps1547",
- "ps3561",
- "ps7309",
- "ps7509",
- "ps4718",
- "ps6411",
- "ps7737",
- "ps7928",
- "ps5087"
+ "ps438",
+ "ps2519",
+ "ps6872",
+ "ps7633",
+ "ps8901",
+ "ps9433",
+ "ps4132",
+ "ps2149",
+ "ps9272",
+ "ps6452",
+ "ps7193",
+ "ps5168",
+ "ps1997",
+ "ps1402",
+ "ps6140",
+ "ps166",
+ "ps6777",
+ "ps7",
+ "ps5913",
+ "ps6860",
+ "ps2955",
+ "ps2375",
+ "ps3663",
+ "ps7248",
+ "ps6566",
+ "ps4759",
+ "ps1570"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json
index 7fa98c69d082..f9bec0de810f 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n bbyby\\r\\n \\r\\n \\r\\n \\r\\n xxbbcczc\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a32b2c2-f14b-4617-9973-55a1a5c08a01"
+ "6870004a-c4b9-4635-a07f-5d2b38a8f88b"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACkE=\""
+ "\"AAAAAAAAPFo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "13c6bf2b-a257-4fdf-9e57-8e73bc7a697f"
+ "fc9fb0a8-74b9-45df-8e73-32628213e6d3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "2fba6cc7-c795-41ee-b2bc-5b39beb7cc4f"
+ "86d1784e-3b00-48c5-8e68-be8373e8933b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193230Z:2fba6cc7-c795-41ee-b2bc-5b39beb7cc4f"
+ "WESTUS:20200721T163912Z:86d1784e-3b00-48c5-8e68-be8373e8933b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:29 GMT"
+ "Tue, 21 Jul 2020 16:39:12 GMT"
],
"Content-Length": [
"890"
@@ -70,7 +70,7 @@
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
- "StatusCode": 200
+ "StatusCode": 201
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2019-12-01",
@@ -79,7 +79,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"bbybyxxbbcczc\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e01be2b-4ca7-47a4-b6b3-2fe2b33d0745"
+ "bf6a1f82-939b-449a-9287-c620632e7698"
],
"Accept-Language": [
"en-US"
@@ -88,7 +88,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -105,31 +105,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACl4=\""
+ "\"AAAAAAAAPHg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6463b03b-dc7d-4708-9212-9fa6c419f393"
+ "4cc3336d-8ad1-496b-b195-8bf959b3a8fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1193"
],
"x-ms-correlation-request-id": [
- "f42df919-42fd-4a89-9041-4bc44fb0ee8e"
+ "e64f9678-55e7-41d5-9084-62b912849a86"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193236Z:f42df919-42fd-4a89-9041-4bc44fb0ee8e"
+ "WESTUS:20200721T163919Z:e64f9678-55e7-41d5-9084-62b912849a86"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:35 GMT"
+ "Tue, 21 Jul 2020 16:39:19 GMT"
],
"Content-Length": [
"890"
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "940d668c-bf12-4ebe-ac31-77316704d339"
+ "052c8ed7-b665-4c67-891d-d1cccdcfe854"
],
"Accept-Language": [
"en-US"
@@ -160,7 +160,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -171,31 +171,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACkE=\""
+ "\"AAAAAAAAPFo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0d1e08a-cf88-4e01-9eda-2f1fa4dbdd53"
+ "e71a79c8-b4d5-4111-8251-8b1616115637"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11994"
],
"x-ms-correlation-request-id": [
- "7338f3ed-358d-4c14-9e1e-6c01c342a118"
+ "4cf937af-5e5e-4fbe-8b1a-9e8088b8acad"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193230Z:7338f3ed-358d-4c14-9e1e-6c01c342a118"
+ "WESTUS:20200721T163912Z:4cf937af-5e5e-4fbe-8b1a-9e8088b8acad"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:30 GMT"
+ "Tue, 21 Jul 2020 16:39:12 GMT"
],
"Content-Length": [
"890"
@@ -217,7 +217,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3bb28d1-ee65-4bcf-80be-a6fe7bb42e05"
+ "328c3ae4-6f7d-4d66-ae41-99ed12169734"
],
"Accept-Language": [
"en-US"
@@ -226,7 +226,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -240,25 +240,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c798eef6-1009-4666-ae17-6a0647d36312"
+ "a91d2fd9-68c7-44c3-83d1-771705c1e9c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11993"
],
"x-ms-correlation-request-id": [
- "dcf90c61-57e1-484d-b64a-b9eb3c190fb6"
+ "3dbb2675-a05b-4913-8148-93b321c6f861"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193231Z:dcf90c61-57e1-484d-b64a-b9eb3c190fb6"
+ "WESTUS:20200721T163913Z:3dbb2675-a05b-4913-8148-93b321c6f861"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:30 GMT"
+ "Tue, 21 Jul 2020 16:39:13 GMT"
],
"Content-Length": [
"97"
@@ -280,7 +280,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "154f8faa-884b-43d1-bc28-01cb96e28407"
+ "56fd3a1b-01f8-4a0d-9238-9ec88f11edd5"
],
"Accept-Language": [
"en-US"
@@ -289,7 +289,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,31 +300,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACl4=\""
+ "\"AAAAAAAAPHg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0c8007c-6bd1-48d5-865b-bead9cba6d86"
+ "1135f5bc-f389-4bb3-a341-b8c6675496a0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11982"
],
"x-ms-correlation-request-id": [
- "29bf7525-664b-49fc-aed3-b125098b8119"
+ "1fbadd3f-2591-4f19-9033-708a0e2dbd52"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193236Z:29bf7525-664b-49fc-aed3-b125098b8119"
+ "WESTUS:20200721T163919Z:1fbadd3f-2591-4f19-9033-708a0e2dbd52"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:35 GMT"
+ "Tue, 21 Jul 2020 16:39:19 GMT"
],
"Content-Length": [
"890"
@@ -346,7 +346,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4164fbcb-196b-43ab-aa49-d22266e65595"
+ "61066a41-3f47-4c49-85ac-f39cef3c633d"
],
"Accept-Language": [
"en-US"
@@ -355,7 +355,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -369,25 +369,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1be631a2-d4b8-43cf-918c-785157d3cf2d"
+ "499bc741-1278-4478-8054-c0210d838c27"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11981"
],
"x-ms-correlation-request-id": [
- "5327613b-ec98-4005-8478-d626b4424ca4"
+ "3d98c302-a18a-4787-a30c-6bf8fe2e9c88"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193236Z:5327613b-ec98-4005-8478-d626b4424ca4"
+ "WESTUS:20200721T163920Z:3d98c302-a18a-4787-a30c-6bf8fe2e9c88"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:36 GMT"
+ "Tue, 21 Jul 2020 16:39:19 GMT"
],
"Content-Length": [
"97"
@@ -409,7 +409,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "262eb373-aedf-4507-90bb-3a198ef4706a"
+ "cbcc52ac-66ad-40ff-bfb8-b203a95aa579"
],
"If-Match": [
"*"
@@ -421,7 +421,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,25 +435,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3598708-6988-4438-b127-a7f9955e1087"
+ "f5d9e1ba-b4bd-4a33-bc4d-ddd021e2b4f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14997"
],
"x-ms-correlation-request-id": [
- "b66ccf0e-e8fc-4b6b-b324-e5f03cacada3"
+ "2c32f88f-33d4-482b-898d-b68debecb077"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193230Z:b66ccf0e-e8fc-4b6b-b324-e5f03cacada3"
+ "WESTUS:20200721T163913Z:2c32f88f-33d4-482b-898d-b68debecb077"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:30 GMT"
+ "Tue, 21 Jul 2020 16:39:12 GMT"
],
"Expires": [
"-1"
@@ -472,7 +472,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd0c4b13-23e1-4800-9e7f-74471f600885"
+ "81f57e02-82ee-4bce-8143-241f62a7e3b2"
],
"If-Match": [
"*"
@@ -484,7 +484,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,25 +498,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "206f7fec-371d-42d6-b559-8fa53cb20927"
+ "0723166a-a3d5-4e3e-8420-8c5a5432b05a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14995"
+ "14993"
],
"x-ms-correlation-request-id": [
- "f013739b-68ed-479c-a64e-e1378324cca5"
+ "b7eef759-80c9-439c-ab3a-11ff1497f175"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193236Z:f013739b-68ed-479c-a64e-e1378324cca5"
+ "WESTUS:20200721T163919Z:b7eef759-80c9-439c-ab3a-11ff1497f175"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:36 GMT"
+ "Tue, 21 Jul 2020 16:39:19 GMT"
],
"Expires": [
"-1"
@@ -535,7 +535,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f1312ed-4199-45db-af60-4016684cea1e"
+ "b79f0c3d-407a-4210-8141-2bb86d4211e9"
],
"Accept-Language": [
"en-US"
@@ -544,7 +544,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -558,25 +558,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9ab91c16-559a-4292-99c5-cd1a69ee4f57"
+ "c658d954-eafe-4d6c-858d-692fda7a0209"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11992"
],
"x-ms-correlation-request-id": [
- "ab7321f3-e945-481a-80b6-ddcdd3974d4f"
+ "10de509d-5602-43b3-93bc-c65170ff4129"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193231Z:ab7321f3-e945-481a-80b6-ddcdd3974d4f"
+ "WESTUS:20200721T163913Z:10de509d-5602-43b3-93bc-c65170ff4129"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:30 GMT"
+ "Tue, 21 Jul 2020 16:39:13 GMT"
],
"Content-Length": [
"670"
@@ -598,7 +598,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "813fbf3f-cbfc-4d7e-8752-b14e3fb261cc"
+ "5fdc56ff-94c9-4577-bc9c-b804428f6a31"
],
"Accept-Language": [
"en-US"
@@ -607,7 +607,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -621,25 +621,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "185b1efe-c340-4c11-b568-e2116226a625"
+ "dfd1fd87-b788-4617-9a03-dde14484e424"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11980"
],
"x-ms-correlation-request-id": [
- "60b96d3d-c7bd-467e-8765-22398e8e4006"
+ "6ddd58f8-0cd3-477b-8efa-63ecd5a00f20"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193236Z:60b96d3d-c7bd-467e-8765-22398e8e4006"
+ "WESTUS:20200721T163920Z:6ddd58f8-0cd3-477b-8efa-63ecd5a00f20"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:36 GMT"
+ "Tue, 21 Jul 2020 16:39:20 GMT"
],
"Content-Length": [
"670"
@@ -661,7 +661,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94b01625-b93b-45d8-b7e9-2f2ded803749"
+ "dea2335b-b1df-4708-abf5-f9059c013528"
],
"If-Match": [
"*"
@@ -673,7 +673,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -690,31 +690,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACkg=\""
+ "\"AAAAAAAAPGE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b132a0c0-78ba-4cca-89fc-eaa56aee27f9"
+ "c0d9d1c8-8c2a-402e-b964-e1b3a83d19ed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "a50b6ea9-0020-4f1c-b595-62019a657915"
+ "846f3906-490e-45d7-98ad-4bb2744e5349"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193232Z:a50b6ea9-0020-4f1c-b595-62019a657915"
+ "WESTUS:20200721T163914Z:846f3906-490e-45d7-98ad-4bb2744e5349"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:31 GMT"
+ "Tue, 21 Jul 2020 16:39:14 GMT"
],
"Content-Length": [
"578"
@@ -736,7 +736,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff471096-1050-4363-b76a-6717fe3b1198"
+ "0649d75b-a3a9-4a8c-850f-c204c172344d"
],
"If-Match": [
"*"
@@ -748,7 +748,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -765,31 +765,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACmU=\""
+ "\"AAAAAAAAPH8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df1a9406-8c09-433a-b37c-ec15f623d480"
+ "cf3e18df-5763-4e6c-b676-9023d21ea5af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1192"
],
"x-ms-correlation-request-id": [
- "6ef0e0f2-b9d7-4143-a89d-14ed07acce95"
+ "cb58bf16-3d91-476c-b74a-85b85418165c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193237Z:6ef0e0f2-b9d7-4143-a89d-14ed07acce95"
+ "WESTUS:20200721T163920Z:cb58bf16-3d91-476c-b74a-85b85418165c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:36 GMT"
+ "Tue, 21 Jul 2020 16:39:20 GMT"
],
"Content-Length": [
"578"
@@ -811,7 +811,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "967c2f54-0d3d-4d02-9526-d7accfc222d3"
+ "cb455f06-e52e-4ae9-ab1c-89a9b21ea0b2"
],
"Accept-Language": [
"en-US"
@@ -820,7 +820,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -831,31 +831,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACkg=\""
+ "\"AAAAAAAAPGE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "12e26d5a-1b23-47d2-b5b4-be20eb72a314"
+ "57f9ccb3-41ca-4e06-a9d2-14d5d751f610"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11991"
],
"x-ms-correlation-request-id": [
- "6bbd5543-aa98-401c-869f-e895ae6e3ce9"
+ "0ec2f7ad-bf0a-42eb-a082-3f180e793540"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193232Z:6bbd5543-aa98-401c-869f-e895ae6e3ce9"
+ "WESTUS:20200721T163915Z:0ec2f7ad-bf0a-42eb-a082-3f180e793540"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:31 GMT"
+ "Tue, 21 Jul 2020 16:39:14 GMT"
],
"Content-Length": [
"578"
@@ -877,7 +877,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf4e520a-44b4-4ee6-84d3-02ffe961a732"
+ "433b4eaa-ce6e-48e3-bc0b-26944e565e12"
],
"Accept-Language": [
"en-US"
@@ -886,7 +886,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -900,25 +900,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3c391e1f-bd2b-4ac6-be05-860fd29b228e"
+ "05eae91a-bb69-457a-ba18-5d6b55914247"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11990"
],
"x-ms-correlation-request-id": [
- "2ca4e37e-82a3-4b67-ad87-144c6072b3c4"
+ "5c2a723a-0643-4779-81c0-3f9079689251"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193232Z:2ca4e37e-82a3-4b67-ad87-144c6072b3c4"
+ "WESTUS:20200721T163915Z:5c2a723a-0643-4779-81c0-3f9079689251"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:32 GMT"
+ "Tue, 21 Jul 2020 16:39:15 GMT"
],
"Content-Length": [
"97"
@@ -940,7 +940,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "702b7786-765c-4016-9635-e4ac4127a4d7"
+ "c529f451-3b50-45ac-98da-e677f57a2d19"
],
"Accept-Language": [
"en-US"
@@ -949,7 +949,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -963,25 +963,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4611712b-f0e1-4d5d-9c8e-8650dc5df4c8"
+ "6fa4747a-60e4-4143-a9dc-477300e0ce30"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11978"
],
"x-ms-correlation-request-id": [
- "c81ea783-65b1-4faa-afa7-c9d082937f38"
+ "552af7ad-ee3e-4b40-9399-e5be13c5e338"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193237Z:c81ea783-65b1-4faa-afa7-c9d082937f38"
+ "WESTUS:20200721T163920Z:552af7ad-ee3e-4b40-9399-e5be13c5e338"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:20 GMT"
],
"Content-Length": [
"97"
@@ -1003,7 +1003,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "421ff921-07bb-4ded-a5f3-937b0c0b7534"
+ "addabd9e-4d6e-4f73-9f0a-7d410d4a855f"
],
"If-Match": [
"*"
@@ -1015,7 +1015,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1029,25 +1029,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "79cb9ffb-d683-43cc-8d18-9ae4feadcb47"
+ "882d360a-a507-46d4-ad73-106ea6cf27a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14996"
],
"x-ms-correlation-request-id": [
- "6c3471d0-c084-4d51-9aa9-3f31db5946d9"
+ "85f495e0-413e-4d63-af44-697485ad6a99"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193232Z:6c3471d0-c084-4d51-9aa9-3f31db5946d9"
+ "WESTUS:20200721T163915Z:85f495e0-413e-4d63-af44-697485ad6a99"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:32 GMT"
+ "Tue, 21 Jul 2020 16:39:15 GMT"
],
"Expires": [
"-1"
@@ -1066,7 +1066,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08b5a742-1c7f-4637-9a08-ed4d0d25d577"
+ "ca9cfeed-4c1c-4c06-923a-33ac0a1a260d"
],
"If-Match": [
"*"
@@ -1078,7 +1078,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1092,25 +1092,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0bcd4a23-1795-4fa2-902a-cea1e8f8aa26"
+ "14770ee5-0c19-4374-87ee-47c745347e26"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14994"
+ "14992"
],
"x-ms-correlation-request-id": [
- "a7c0694d-03cc-45a9-b499-4d919fbbe858"
+ "59a76e20-ca62-4900-a867-4b72af4aaff4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193237Z:a7c0694d-03cc-45a9-b499-4d919fbbe858"
+ "WESTUS:20200721T163920Z:59a76e20-ca62-4900-a867-4b72af4aaff4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:36 GMT"
+ "Tue, 21 Jul 2020 16:39:20 GMT"
],
"Expires": [
"-1"
@@ -1129,7 +1129,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3c5ce68-d817-4a69-bfd1-42fea896dc51"
+ "676b4672-d711-49a9-8ebe-9922efbb195b"
],
"Accept-Language": [
"en-US"
@@ -1138,7 +1138,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1152,25 +1152,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "138e2633-f346-4f51-8385-9277671f40f4"
+ "b2e1f4a4-d553-4bc7-a41d-53fc3718ad1a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11989"
],
"x-ms-correlation-request-id": [
- "46f1a32a-46c6-4934-b91c-4aa8938c065c"
+ "72edda8c-003a-4b2c-90a5-bc574a4259d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193232Z:46f1a32a-46c6-4934-b91c-4aa8938c065c"
+ "WESTUS:20200721T163915Z:72edda8c-003a-4b2c-90a5-bc574a4259d3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:32 GMT"
+ "Tue, 21 Jul 2020 16:39:15 GMT"
],
"Content-Length": [
"729"
@@ -1192,7 +1192,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e1c1b6e-0c4e-466a-a939-a1e794b925a6"
+ "2de330ec-8317-4632-a4b8-2f54070b9c1e"
],
"Accept-Language": [
"en-US"
@@ -1201,7 +1201,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1215,25 +1215,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "37384fde-9ac3-44ea-aa51-3a1ed0fc8257"
+ "5fa4809d-dafc-45ad-b65d-02e488258048"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11986"
],
"x-ms-correlation-request-id": [
- "5c3bab04-2459-4390-909c-81fe5bbc4ce3"
+ "9b3b9909-d722-41a3-9ab3-66d62d376856"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193234Z:5c3bab04-2459-4390-909c-81fe5bbc4ce3"
+ "WESTUS:20200721T163917Z:9b3b9909-d722-41a3-9ab3-66d62d376856"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:33 GMT"
+ "Tue, 21 Jul 2020 16:39:17 GMT"
],
"Content-Length": [
"729"
@@ -1255,7 +1255,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f27b641-4b67-4fc4-b06b-814b0c402e5a"
+ "4de10567-98ef-48fd-9777-036c814fc928"
],
"Accept-Language": [
"en-US"
@@ -1264,7 +1264,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1278,25 +1278,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96cf877d-2f92-42a2-8cb3-e0a265c52c0e"
+ "2645e4bb-437f-44d0-88d5-369463766cfc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11977"
],
"x-ms-correlation-request-id": [
- "771f3f35-a5bf-4a2f-aed4-f05c716f9da9"
+ "b423324a-8e9a-43d0-90d8-4f778707cd25"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193237Z:771f3f35-a5bf-4a2f-aed4-f05c716f9da9"
+ "WESTUS:20200721T163921Z:b423324a-8e9a-43d0-90d8-4f778707cd25"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:20 GMT"
],
"Content-Length": [
"729"
@@ -1318,7 +1318,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecafbd92-60de-4c90-9520-fd9520ca87b5"
+ "d548755b-e4f6-4733-bdde-357f98914780"
],
"Accept-Language": [
"en-US"
@@ -1327,7 +1327,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1341,25 +1341,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4941040e-2f18-4fbc-b554-33e462da7490"
+ "ce8c9f7c-314e-43d3-ab2d-249ab195cbff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11974"
],
"x-ms-correlation-request-id": [
- "8dd051e0-d79b-4d2b-a31e-c51718454594"
+ "e7c1a352-319f-4ca0-aaaf-c268d5f67763"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193238Z:8dd051e0-d79b-4d2b-a31e-c51718454594"
+ "WESTUS:20200721T163921Z:e7c1a352-319f-4ca0-aaaf-c268d5f67763"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:21 GMT"
],
"Content-Length": [
"729"
@@ -1381,7 +1381,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n version\\r\\n Accept\\r\\n Accept-Charset\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b954863-2ee6-403e-a4fe-a2b469c71280"
+ "4f295d0f-be80-41dd-91c4-53b05e5abc2f"
],
"If-Match": [
"*"
@@ -1393,7 +1393,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1410,31 +1410,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAClA=\""
+ "\"AAAAAAAAPGk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ced258a-3f50-4aa1-831e-e03bfd7b1088"
+ "8b745a78-fbe0-4d09-831e-34305ffad025"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "f2a21d70-60ef-4898-8e18-d86b5a45223a"
+ "ee3b50c8-b3c4-4703-a22f-9ff57102ff64"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193233Z:f2a21d70-60ef-4898-8e18-d86b5a45223a"
+ "WESTUS:20200721T163916Z:ee3b50c8-b3c4-4703-a22f-9ff57102ff64"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:33 GMT"
+ "Tue, 21 Jul 2020 16:39:16 GMT"
],
"Content-Length": [
"810"
@@ -1456,7 +1456,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"versionAcceptAccept-Charset\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06fed564-8669-46eb-83c5-c29fdbb5738d"
+ "f9257991-8e96-4207-9caf-aabc803b267b"
],
"If-Match": [
"*"
@@ -1468,7 +1468,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1485,31 +1485,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACmw=\""
+ "\"AAAAAAAAPIY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b24cb626-a308-48a5-9d0c-5b231ada4650"
+ "5571c6b5-6b67-472f-840b-9cf0f912e945"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1191"
],
"x-ms-correlation-request-id": [
- "00b0ffca-aae5-44ca-a139-26ca1a488cac"
+ "146cd555-51a9-440c-a3c3-4973f5a528da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193237Z:00b0ffca-aae5-44ca-a139-26ca1a488cac"
+ "WESTUS:20200721T163921Z:146cd555-51a9-440c-a3c3-4973f5a528da"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:21 GMT"
],
"Content-Length": [
"810"
@@ -1531,7 +1531,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce49a294-b65f-4ab8-8cfa-57df6724e923"
+ "d3b286d0-8bb5-4219-b16b-534fb2c6f853"
],
"Accept-Language": [
"en-US"
@@ -1540,7 +1540,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1551,31 +1551,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAClA=\""
+ "\"AAAAAAAAPGk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4d5c1966-f392-4210-8aef-c8c0646add19"
+ "d8f8e143-d7d8-43e2-912e-d21ffbcdfee9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11988"
],
"x-ms-correlation-request-id": [
- "f84622e9-79dd-4940-ab06-b6373a352ff8"
+ "f0398119-1841-4cee-ae33-2b3c8a836956"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193233Z:f84622e9-79dd-4940-ab06-b6373a352ff8"
+ "WESTUS:20200721T163916Z:f0398119-1841-4cee-ae33-2b3c8a836956"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:33 GMT"
+ "Tue, 21 Jul 2020 16:39:16 GMT"
],
"Content-Length": [
"810"
@@ -1597,7 +1597,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94c68cc5-474b-4393-8436-bd4d54989ad6"
+ "ce612bfd-7bf3-4144-ba44-52a4eb4a885d"
],
"Accept-Language": [
"en-US"
@@ -1606,7 +1606,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1620,25 +1620,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d7a1ce5a-8b8d-4b3e-a122-7750673b8ec3"
+ "80ad4990-c08d-467d-a440-2ab95b32c6ad"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11987"
],
"x-ms-correlation-request-id": [
- "8df6f8e7-8803-4f06-923e-5b2a555325f1"
+ "48d85b2d-c75b-49e7-b297-4672fca78a10"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193234Z:8df6f8e7-8803-4f06-923e-5b2a555325f1"
+ "WESTUS:20200721T163917Z:48d85b2d-c75b-49e7-b297-4672fca78a10"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:33 GMT"
+ "Tue, 21 Jul 2020 16:39:17 GMT"
],
"Content-Length": [
"97"
@@ -1660,7 +1660,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5eb39bcc-d354-418e-9364-1e6cc49c1977"
+ "60511eab-3f4b-4119-b073-8b716394d9c7"
],
"Accept-Language": [
"en-US"
@@ -1669,7 +1669,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1683,25 +1683,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5f16ecdd-3024-4049-9b07-98a0146e95ed"
+ "0e1866a4-4310-4173-b6be-829366d03c62"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11975"
],
"x-ms-correlation-request-id": [
- "eab3f844-0421-4338-8c61-e7b7b416986f"
+ "c89c4e65-1594-4b17-b9b0-2b3829033d64"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193238Z:eab3f844-0421-4338-8c61-e7b7b416986f"
+ "WESTUS:20200721T163921Z:c89c4e65-1594-4b17-b9b0-2b3829033d64"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:21 GMT"
],
"Content-Length": [
"97"
@@ -1723,7 +1723,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e74abed5-9347-47ab-8b6e-d655fe9bc74f"
+ "2ae47db8-3ced-49e9-b57e-9c0ea28e51e1"
],
"If-Match": [
"*"
@@ -1735,7 +1735,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1749,25 +1749,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4dc52656-a4d3-4d9a-b803-3e52b6f7d68b"
+ "39c5cdaa-4cfd-4146-91cd-2db406847c0a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14995"
],
"x-ms-correlation-request-id": [
- "388418c4-754e-48aa-a9e9-f4ded26ecf79"
+ "11d06be4-24b7-412b-b040-584587246a73"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193234Z:388418c4-754e-48aa-a9e9-f4ded26ecf79"
+ "WESTUS:20200721T163917Z:11d06be4-24b7-412b-b040-584587246a73"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:33 GMT"
+ "Tue, 21 Jul 2020 16:39:17 GMT"
],
"Expires": [
"-1"
@@ -1786,7 +1786,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84a0abbc-4b7c-452f-8d83-37923ae74bc3"
+ "6f5d3c8e-8b29-42a6-8fee-a06b6e97c24a"
],
"If-Match": [
"*"
@@ -1798,7 +1798,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1812,25 +1812,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "60d9b2ce-3536-4f08-bc4d-1b517d6210c3"
+ "9f370028-20b2-4be9-a26a-968e65c0aa18"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14993"
+ "14991"
],
"x-ms-correlation-request-id": [
- "73b2f0cb-3c61-455f-8359-c4367282d274"
+ "76334216-c4e4-4c33-a38f-de0ca5dbc17b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193238Z:73b2f0cb-3c61-455f-8359-c4367282d274"
+ "WESTUS:20200721T163921Z:76334216-c4e4-4c33-a38f-de0ca5dbc17b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:21 GMT"
],
"Expires": [
"-1"
@@ -1849,7 +1849,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e1d4b05-1c0e-49ab-ba68-ce9c70cf7fe0"
+ "f67c93e0-4cb6-41e9-b2f1-627dc5ab2c30"
],
"Accept-Language": [
"en-US"
@@ -1858,7 +1858,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1872,25 +1872,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c39a26e1-f605-4a7e-ad94-0d0886afa250"
+ "f42b0bf5-f69c-4b49-b900-c7423e36f16a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11985"
],
"x-ms-correlation-request-id": [
- "44ee7b85-3413-482b-a1dd-153811a20ef5"
+ "839ea4e6-ddc6-4770-a19b-2aac20b9da8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193234Z:44ee7b85-3413-482b-a1dd-153811a20ef5"
+ "WESTUS:20200721T163917Z:839ea4e6-ddc6-4770-a19b-2aac20b9da8b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:34 GMT"
+ "Tue, 21 Jul 2020 16:39:17 GMT"
],
"Content-Length": [
"7423"
@@ -1912,7 +1912,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e570f073-a540-4b67-b7d0-32bedc6368f7"
+ "5af87219-c9f5-4ecc-a58a-1491d24854f4"
],
"Accept-Language": [
"en-US"
@@ -1921,7 +1921,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1935,25 +1935,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d81a553b-9f35-4974-a94e-0625bf3e3684"
+ "22bba85b-9a14-440e-a2ee-dcee33a478f0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11973"
],
"x-ms-correlation-request-id": [
- "a120a05f-6054-4c54-bc29-3071ef008b97"
+ "f012b181-b49b-4165-b6b9-af8672c595e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193238Z:a120a05f-6054-4c54-bc29-3071ef008b97"
+ "WESTUS:20200721T163922Z:f012b181-b49b-4165-b6b9-af8672c595e5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:38 GMT"
+ "Tue, 21 Jul 2020 16:39:21 GMT"
],
"Content-Length": [
"7423"
@@ -1975,7 +1975,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00192121-7ccf-4ad9-ad05-d9ed47d8db0b"
+ "c7371af6-73a1-43e0-9678-24ea549cf224"
],
"If-Match": [
"*"
@@ -1987,7 +1987,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2004,31 +2004,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAClc=\""
+ "\"AAAAAAAAPHE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "065a2050-272f-44a5-92ee-b45ceff3f354"
+ "8a2afbc4-4900-4d10-b04c-15cad078f796"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1194"
],
"x-ms-correlation-request-id": [
- "879433f1-c885-4eff-84a5-1b3a74e412f6"
+ "875da729-8bbe-42a1-a3de-870e4ae2b261"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193235Z:879433f1-c885-4eff-84a5-1b3a74e412f6"
+ "WESTUS:20200721T163918Z:875da729-8bbe-42a1-a3de-870e4ae2b261"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:34 GMT"
+ "Tue, 21 Jul 2020 16:39:18 GMT"
],
"Content-Length": [
"540"
@@ -2041,7 +2041,7 @@
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
- "StatusCode": 200
+ "StatusCode": 201
},
{
"RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2019-12-01",
@@ -2050,7 +2050,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9868bd14-37b8-491a-8dab-2d93d6bfe9ce"
+ "f5467cb1-9507-4f13-9f95-54e34af8a5d7"
],
"If-Match": [
"*"
@@ -2062,7 +2062,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2079,31 +2079,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACnM=\""
+ "\"AAAAAAAAPI0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef386f2f-53f6-4e40-8fdf-95cf86949e84"
+ "11eb5a59-dffb-4749-9289-3cc8931a066d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1190"
],
"x-ms-correlation-request-id": [
- "17a33399-eb4b-4cc2-8a2c-a7b14b15d148"
+ "cc2c551e-67ec-426c-ad20-35ee99d1daf3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193238Z:17a33399-eb4b-4cc2-8a2c-a7b14b15d148"
+ "WESTUS:20200721T163922Z:cc2c551e-67ec-426c-ad20-35ee99d1daf3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:38 GMT"
+ "Tue, 21 Jul 2020 16:39:22 GMT"
],
"Content-Length": [
"540"
@@ -2125,7 +2125,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f4efa17-06b0-4142-8fd5-b20ab80bb78e"
+ "1d091db1-e953-4d4a-88cd-b9973cda31dd"
],
"Accept-Language": [
"en-US"
@@ -2134,7 +2134,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2145,31 +2145,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAClc=\""
+ "\"AAAAAAAAPHE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e311323b-658e-4ac5-9b41-12e24460d09c"
+ "80a767ce-bbf3-4458-894a-c714a1d6b909"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11984"
],
"x-ms-correlation-request-id": [
- "6a31a215-bd9a-4ab8-bbc8-3eaf2e69536f"
+ "2afd0cb8-dd22-4d4b-a8dc-d24d956f8f4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193235Z:6a31a215-bd9a-4ab8-bbc8-3eaf2e69536f"
+ "WESTUS:20200721T163918Z:2afd0cb8-dd22-4d4b-a8dc-d24d956f8f4c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:35 GMT"
+ "Tue, 21 Jul 2020 16:39:18 GMT"
],
"Content-Length": [
"540"
@@ -2191,7 +2191,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d78dd6c8-ae6f-44b9-9ea7-c9e4b4c0086e"
+ "ce62655f-5c96-4df8-b972-a8bb1fe6f0c1"
],
"Accept-Language": [
"en-US"
@@ -2200,7 +2200,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2214,25 +2214,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5b93bd99-1dc7-4fa7-b5a9-263a4acf66fa"
+ "4252749e-a365-49c9-a52c-5a1afffbebff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11983"
],
"x-ms-correlation-request-id": [
- "a6ead604-86d7-436e-8312-ceb12f2c0565"
+ "9f01cc2e-8dfc-4f88-833a-f4b67cc6c52b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193236Z:a6ead604-86d7-436e-8312-ceb12f2c0565"
+ "WESTUS:20200721T163919Z:9f01cc2e-8dfc-4f88-833a-f4b67cc6c52b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:35 GMT"
+ "Tue, 21 Jul 2020 16:39:19 GMT"
],
"Content-Length": [
"97"
@@ -2254,7 +2254,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "670ae252-1297-4e07-b4d1-0eb50fdb91d6"
+ "eb3682e9-3083-42d2-9fd2-9ed79b969004"
],
"Accept-Language": [
"en-US"
@@ -2263,7 +2263,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2277,25 +2277,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5142c67b-08d2-4521-8085-312fc30ed0ae"
+ "aaf4a3fd-adb1-4810-9fa1-3649dab613c4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11971"
],
"x-ms-correlation-request-id": [
- "ebd374d3-8773-4635-8d8b-c3548f5f3e2e"
+ "6024d2c5-466e-43ee-8e3a-3b86d07bd88e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193239Z:ebd374d3-8773-4635-8d8b-c3548f5f3e2e"
+ "WESTUS:20200721T163922Z:6024d2c5-466e-43ee-8e3a-3b86d07bd88e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:38 GMT"
+ "Tue, 21 Jul 2020 16:39:22 GMT"
],
"Content-Length": [
"97"
@@ -2317,7 +2317,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3ac311f-c9e5-4f61-8853-d4527bc8aca1"
+ "75363eea-83fb-4549-a59e-c573f8ae82fb"
],
"If-Match": [
"*"
@@ -2329,7 +2329,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2343,25 +2343,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "abe140f5-4cf1-4639-be08-73207db78abb"
+ "56bb29cf-be58-4e3e-883e-82fda15a5248"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14994"
],
"x-ms-correlation-request-id": [
- "95c088df-c221-410a-9249-5aa5f58e2716"
+ "0f55d4bd-17bf-4467-bd47-86be508234d6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193235Z:95c088df-c221-410a-9249-5aa5f58e2716"
+ "WESTUS:20200721T163919Z:0f55d4bd-17bf-4467-bd47-86be508234d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:35 GMT"
+ "Tue, 21 Jul 2020 16:39:19 GMT"
],
"Expires": [
"-1"
@@ -2380,7 +2380,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f00cdda2-ddd2-4cfa-b4b8-cf6aaf0b6e73"
+ "741313b5-a61f-455d-8aea-f401f2f0d751"
],
"If-Match": [
"*"
@@ -2392,7 +2392,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2406,25 +2406,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "845f8039-64d9-4bae-b063-5ab22b6fd18b"
+ "23d24468-25fc-450c-886c-c2da1d217490"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14992"
+ "14990"
],
"x-ms-correlation-request-id": [
- "e9d41072-1782-4f6a-91c8-b1ae0cfb04ef"
+ "b31c3182-21e2-44ac-8490-d41ed50a6b29"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193239Z:e9d41072-1782-4f6a-91c8-b1ae0cfb04ef"
+ "WESTUS:20200721T163922Z:b31c3182-21e2-44ac-8490-d41ed50a6b29"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:38 GMT"
+ "Tue, 21 Jul 2020 16:39:22 GMT"
],
"Expires": [
"-1"
@@ -2443,7 +2443,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f0c4b4e-8e2e-4eb5-96c7-87238bf16c30"
+ "d2e4a3c4-1fc6-429a-a61c-c213affba228"
],
"Accept-Language": [
"en-US"
@@ -2452,7 +2452,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2463,31 +2463,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACmU=\""
+ "\"AAAAAAAAPH8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89620234-cd29-4846-9cd4-14947e27c4c8"
+ "25c833a5-f71f-457b-a5c4-6dea5abc08fa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11979"
],
"x-ms-correlation-request-id": [
- "9d1a30bc-5b3b-44cc-b4cc-c5460c36fb05"
+ "44f71a58-667d-4e8e-8b05-c72bcdc47529"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193237Z:9d1a30bc-5b3b-44cc-b4cc-c5460c36fb05"
+ "WESTUS:20200721T163920Z:44f71a58-667d-4e8e-8b05-c72bcdc47529"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:36 GMT"
+ "Tue, 21 Jul 2020 16:39:20 GMT"
],
"Content-Length": [
"581"
@@ -2509,7 +2509,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76f5f732-6d8a-436c-9cef-3a1aff76b495"
+ "d5943f7e-6bc3-4a1f-92e9-7d7555ffab54"
],
"Accept-Language": [
"en-US"
@@ -2518,7 +2518,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2529,31 +2529,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACmw=\""
+ "\"AAAAAAAAPIY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "85a7c274-ddae-4aab-a442-3fc3e8ec2b57"
+ "67dd9470-6fa5-44d1-930a-daa871e70b9c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11976"
],
"x-ms-correlation-request-id": [
- "1fe91372-39b3-4ad4-8e26-5c2f0c15b432"
+ "c8b9fbc4-3e09-4791-905e-3c70fe036ca0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193238Z:1fe91372-39b3-4ad4-8e26-5c2f0c15b432"
+ "WESTUS:20200721T163921Z:c8b9fbc4-3e09-4791-905e-3c70fe036ca0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:37 GMT"
+ "Tue, 21 Jul 2020 16:39:21 GMT"
],
"Content-Length": [
"813"
@@ -2575,7 +2575,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a41be28-b97b-493d-b256-798508074a78"
+ "2c856066-52dc-4f1d-9ac7-6b2d67bae801"
],
"Accept-Language": [
"en-US"
@@ -2584,7 +2584,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -2595,31 +2595,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACnM=\""
+ "\"AAAAAAAAPI0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c3dfdfd-9d9e-4bd3-91af-d60903280ea5"
+ "db5517ee-daba-4fea-b2f2-ae93f983451d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11972"
],
"x-ms-correlation-request-id": [
- "75c69916-e745-40ba-8820-d23d59042c7d"
+ "e76c5f6d-d510-4a76-ad3f-6e5926761884"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193239Z:75c69916-e745-40ba-8820-d23d59042c7d"
+ "WESTUS:20200721T163922Z:e76c5f6d-d510-4a76-ad3f-6e5926761884"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:38 GMT"
+ "Tue, 21 Jul 2020 16:39:22 GMT"
],
"Content-Length": [
"543"
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json
index 1811e7fa46a9..f619784f0af3 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7539b3fb-d4fa-4f6f-bd62-9b705a5dbb42"
+ "686978b7-6d05-4a3b-a0b6-f33be05586ba"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "54bda830-7812-446b-9c7a-df4cd229d1d6"
+ "cb4ebee7-9e6b-4e34-9035-5bacb91c9ab7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,19 +39,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "d0c7a82c-88c8-4690-abe3-e4ccc6edc4f8"
+ "13a8a0d9-6406-434e-8401-0374f8903b9e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193351Z:d0c7a82c-88c8-4690-abe3-e4ccc6edc4f8"
+ "WESTUS:20200721T164101Z:13a8a0d9-6406-434e-8401-0374f8903b9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:51 GMT"
+ "Tue, 21 Jul 2020 16:41:00 GMT"
],
"Content-Length": [
- "1285"
+ "1287"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,17 +60,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2623\",\r\n \"terms\": \"ps9310\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps6125\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps8705\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7ebedca-b606-4f3f-83bf-09c60b4bce46"
+ "fbc964b5-acf1-4806-b832-e1ddf2adb2e2"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACr0=\""
+ "\"AAAAAAAAPOg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "61f79f6f-272c-4d66-9f3a-868d1a796666"
+ "b1018492-42bc-4b19-a5f5-0ea47ef5c940"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "ad422c3c-059c-40b9-b54c-6bb1ca89360f"
+ "25722b00-8b23-4664-9355-b6dd45fc7296"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193352Z:ad422c3c-059c-40b9-b54c-6bb1ca89360f"
+ "WESTUS:20200721T164103Z:25722b00-8b23-4664-9355-b6dd45fc7296"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:52 GMT"
+ "Tue, 21 Jul 2020 16:41:02 GMT"
],
"Content-Length": [
"998"
@@ -132,17 +132,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps6125\",\r\n \"description\": \"ps2623\",\r\n \"terms\": \"ps9310\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps8705\",\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2f06082-d9c2-4163-a7fe-cf9b8e874e89"
+ "5a1a6bfa-bb4a-4804-a1e7-40d3c1891e59"
],
"Accept-Language": [
"en-US"
@@ -151,7 +151,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,13 +162,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACr0=\""
+ "\"AAAAAAAAPOg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ba831416-69c2-4b50-b5ad-2eb46303fa45"
+ "2271ac6c-2c1f-4ccc-acf2-4bb0b4f22160"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "6e19223a-13ce-4bd5-98ac-3770c2d9ae60"
+ "05019791-cc8d-4a95-a221-be930a4d542e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193352Z:6e19223a-13ce-4bd5-98ac-3770c2d9ae60"
+ "WESTUS:20200721T164103Z:05019791-cc8d-4a95-a221-be930a4d542e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:52 GMT"
+ "Tue, 21 Jul 2020 16:41:02 GMT"
],
"Content-Length": [
"484"
@@ -198,17 +198,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps6125\",\r\n \"description\": \"ps2623\",\r\n \"terms\": \"ps9310\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps8705\",\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a944b46-2a40-46ea-898c-35c2fdcad264"
+ "329a610d-4202-4eff-8d6e-cf8f30fd46f9"
],
"Accept-Language": [
"en-US"
@@ -217,7 +217,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACsU=\""
+ "\"AAAAAAAAPPI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6810965f-6185-498d-8c4d-528f8833fbc2"
+ "25f93b66-983e-44a1-81e0-34b655a39436"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,19 +243,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "54efebb4-e5d6-4490-a8e5-0d585ec1c3fe"
+ "a2dcb803-bd2a-4698-a436-505673aa6720"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193354Z:54efebb4-e5d6-4490-a8e5-0d585ec1c3fe"
+ "WESTUS:20200721T164104Z:a2dcb803-bd2a-4698-a436-505673aa6720"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:53 GMT"
+ "Tue, 21 Jul 2020 16:41:03 GMT"
],
"Content-Length": [
- "485"
+ "484"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,17 +264,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps2767\",\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe91d449-538f-4827-a9e5-9d318ab3deed"
+ "521e9d1c-e65a-4611-b928-9674e62d8494"
],
"Accept-Language": [
"en-US"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,7 +297,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0597f95a-6f4b-40b0-9135-8903e0f80af2"
+ "d661656e-59ab-4fd5-bc00-73ed1f9118d9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +306,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "cd9e8e4e-f3d6-4632-b98e-29f63908d8ed"
+ "ccf7c663-a9f0-493e-9547-2da6793604a4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193352Z:cd9e8e4e-f3d6-4632-b98e-29f63908d8ed"
+ "WESTUS:20200721T164103Z:ccf7c663-a9f0-493e-9547-2da6793604a4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:52 GMT"
+ "Tue, 21 Jul 2020 16:41:02 GMT"
],
"Content-Length": [
"34"
@@ -331,13 +331,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53ef5adc-1c7a-49e6-a70e-f15c3f64df93"
+ "3a570a12-a3b7-4ee4-8f08-daf7b33ee11d"
],
"Accept-Language": [
"en-US"
@@ -346,7 +346,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,7 +360,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86789a91-ebe4-427d-8bfc-6bbfe303ca90"
+ "d31cfbb4-c948-4ede-96e6-7f7824ac2e6a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,16 +369,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "e9fe9a07-248f-4fc6-b1ea-b8984bc2da2b"
+ "29938d0f-e87d-4ba3-960e-243e4729a6d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193353Z:e9fe9a07-248f-4fc6-b1ea-b8984bc2da2b"
+ "WESTUS:20200721T164104Z:29938d0f-e87d-4ba3-960e-243e4729a6d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:53 GMT"
+ "Tue, 21 Jul 2020 16:41:03 GMT"
],
"Content-Length": [
"754"
@@ -390,17 +390,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79083c89-2bfd-4aa8-87ea-7fdb505cf86a"
+ "391e7589-a4a1-4b70-921d-e28a10bd5cfd"
],
"Accept-Language": [
"en-US"
@@ -409,7 +409,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,7 +423,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aaa603cc-42a8-4c4d-b4a2-f45d534aaa04"
+ "78ab2b4a-a0d8-4dc6-8e87-363c7945a55d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -432,16 +432,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "e1df293d-3758-4aaf-b105-0eeea236e6e4"
+ "63a99bef-35d9-4f90-a052-396afda48a19"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193355Z:e1df293d-3758-4aaf-b105-0eeea236e6e4"
+ "WESTUS:20200721T164106Z:63a99bef-35d9-4f90-a052-396afda48a19"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:55 GMT"
+ "Tue, 21 Jul 2020 16:41:05 GMT"
],
"Content-Length": [
"34"
@@ -463,7 +463,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a3ba4b2-846e-411d-bdd8-3de8cc9a0acc"
+ "3f09bd89-e681-4211-a2e4-0127ae92adab"
],
"Accept-Language": [
"en-US"
@@ -472,7 +472,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -486,7 +486,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2efc01b4-2e71-44c0-a1c3-f95167856c7d"
+ "3576bf7d-6197-41b8-9e3c-0dff915f66ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -495,16 +495,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "d3a2a720-ea8a-4061-b5e2-aa80f42b93dd"
+ "b5b4cbf6-3ca8-40d1-a5d9-e4fc44dc353e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193353Z:d3a2a720-ea8a-4061-b5e2-aa80f42b93dd"
+ "WESTUS:20200721T164103Z:b5b4cbf6-3ca8-40d1-a5d9-e4fc44dc353e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:52 GMT"
+ "Tue, 21 Jul 2020 16:41:03 GMT"
],
"Content-Length": [
"729"
@@ -526,7 +526,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be9f63a2-6894-49ac-9bd8-3cd49ba82984"
+ "9b05122b-8985-4317-b7a2-085d21414efb"
],
"Accept-Language": [
"en-US"
@@ -535,7 +535,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -549,7 +549,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "236e48e5-968a-4b93-aa2d-e23275b8a4e9"
+ "f0a92ed8-0740-4026-83ec-dc664fc8e0c7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -558,16 +558,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "a2c3c37a-b0c6-4203-971a-b447cee826e6"
+ "e0bdcab6-c9c7-46e7-82c5-24466a3bcd96"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193355Z:a2c3c37a-b0c6-4203-971a-b447cee826e6"
+ "WESTUS:20200721T164105Z:e0bdcab6-c9c7-46e7-82c5-24466a3bcd96"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:54 GMT"
+ "Tue, 21 Jul 2020 16:41:04 GMT"
],
"Content-Length": [
"729"
@@ -583,13 +583,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a4754e4-5341-404f-b34d-142418c89100"
+ "c2cc349d-34f9-4c89-8e87-88f68909d862"
],
"Accept-Language": [
"en-US"
@@ -598,7 +598,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,13 +609,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACm8=\""
+ "\"AAAAAAAAPIk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6c96ae46-554a-4604-9663-2a707819d3cb"
+ "c5df0660-e282-459c-b7c0-f2bd72953e49"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -624,16 +624,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ed91ef09-8c1f-44f6-a7b9-6d655bf7e55e"
+ "f34f5afa-1c49-4852-b743-805c261ea6d0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193353Z:ed91ef09-8c1f-44f6-a7b9-6d655bf7e55e"
+ "WESTUS:20200721T164104Z:f34f5afa-1c49-4852-b743-805c261ea6d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:53 GMT"
+ "Tue, 21 Jul 2020 16:41:03 GMT"
],
"Content-Length": [
"619"
@@ -645,17 +645,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps2767\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps997\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ece3f218-d59c-4113-af88-b91cfc0db34c"
+ "aa0f1901-ae4a-4655-923b-94af779b67e7"
],
"If-Match": [
"*"
@@ -667,13 +667,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "236"
+ "235"
]
},
"ResponseHeaders": {
@@ -687,7 +687,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d36eece0-7e8d-40af-abc2-31607473ea32"
+ "05e1fab1-4d38-4799-84d6-97cbebac356e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +696,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "2b9080b1-1561-4a0b-8674-8e8d89d13eac"
+ "5b522ac6-105f-4e06-93bc-f0fd0745102b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193353Z:2b9080b1-1561-4a0b-8674-8e8d89d13eac"
+ "WESTUS:20200721T164104Z:5b522ac6-105f-4e06-93bc-f0fd0745102b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:53 GMT"
+ "Tue, 21 Jul 2020 16:41:03 GMT"
],
"Expires": [
"-1"
@@ -715,13 +715,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps2767'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzMjc2NycmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps997'&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzOTk3JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aadcb671-e6c0-49db-8382-2d67f3a983bd"
+ "35e35a9f-5329-4d2a-aac5-da6e0eb8e77d"
],
"Accept-Language": [
"en-US"
@@ -730,7 +730,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -744,7 +744,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d104bf20-682d-4813-b9fb-b0d0e53ddeca"
+ "8463a020-b15f-4288-a097-3f4f33ba1e19"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -753,19 +753,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "710b60d6-6e7e-40b4-962a-d75869977bf4"
+ "cfc84c25-b841-4a60-a782-48d69e59c6a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193354Z:710b60d6-6e7e-40b4-962a-d75869977bf4"
+ "WESTUS:20200721T164104Z:cfc84c25-b841-4a60-a782-48d69e59c6a2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:53 GMT"
+ "Tue, 21 Jul 2020 16:41:04 GMT"
],
"Content-Length": [
- "581"
+ "580"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -774,7 +774,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps2767\",\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
@@ -784,7 +784,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fb9a99d-45d8-47dd-825a-f0dc30223cce"
+ "e96b2cd1-8de7-4bbe-aab9-a6924159d369"
],
"Accept-Language": [
"en-US"
@@ -793,7 +793,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -807,7 +807,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8905f65-b4ed-43f4-b221-eee0c47ad7f3"
+ "5859a33a-7185-439a-9901-f50d9cbdc0bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -816,19 +816,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "9e3f27f5-d477-49eb-947e-e3f0ce219cfb"
+ "9453f53b-0f7b-4e2e-aad0-67c1aa73dc5e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193354Z:9e3f27f5-d477-49eb-947e-e3f0ce219cfb"
+ "WESTUS:20200721T164105Z:9453f53b-0f7b-4e2e-aad0-67c1aa73dc5e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:54 GMT"
+ "Tue, 21 Jul 2020 16:41:04 GMT"
],
"Content-Length": [
- "1886"
+ "1887"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -837,17 +837,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps2767\",\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6fb0104-253b-4aee-9c4b-dee253f9e28c"
+ "82f25d3b-8da6-4b2e-837b-aa1abbfe4f5c"
],
"Accept-Language": [
"en-US"
@@ -856,7 +856,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -870,7 +870,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2ebb6321-be89-479e-b2d5-eed41796d55b"
+ "b74e66ad-b2eb-403e-a25a-c28be3c05e1f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -879,16 +879,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "60c4a528-3d1d-45e9-9e24-6d0240229443"
+ "831dc92b-e85a-4a4c-948b-d7c3375f495c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193355Z:60c4a528-3d1d-45e9-9e24-6d0240229443"
+ "WESTUS:20200721T164106Z:831dc92b-e85a-4a4c-948b-d7c3375f495c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:55 GMT"
+ "Tue, 21 Jul 2020 16:41:05 GMT"
],
"Expires": [
"-1"
@@ -901,13 +901,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?deleteSubscriptions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?deleteSubscriptions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e641086d-7d99-4b37-9e19-60116723b53e"
+ "ffd39826-c9e1-44d8-a73c-46ded719361a"
],
"If-Match": [
"*"
@@ -919,7 +919,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -933,7 +933,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "319e97e9-1e91-4baa-ad16-9403d4489450"
+ "bbd9f95c-9961-49a6-8e6d-a660ae10b55c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -942,16 +942,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "659319d3-5fb7-4318-840f-da67d82f255f"
+ "2879dbd1-061e-40b6-8529-7d0f1e4314ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193356Z:659319d3-5fb7-4318-840f-da67d82f255f"
+ "WESTUS:20200721T164106Z:2879dbd1-061e-40b6-8529-7d0f1e4314ae"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:55 GMT"
+ "Tue, 21 Jul 2020 16:41:05 GMT"
],
"Expires": [
"-1"
@@ -966,13 +966,13 @@
],
"Names": {
"": [
- "ps7063",
- "ps6125",
- "ps2623",
- "ps9310",
- "ps2767",
- "ps2703",
- "ps7717"
+ "ps7899",
+ "ps8705",
+ "ps9916",
+ "ps9545",
+ "ps997",
+ "ps4812",
+ "ps8394"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json
index 29dffb2d0f2d..85895dbf9ba4 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "578ee8de-a2cf-452c-93c5-d555e59486f3"
+ "9959cdba-a30c-4c18-9df0-c9852442169f"
],
"Accept-Language": [
"en-US"
@@ -16,13 +16,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "175"
+ "174"
]
},
"ResponseHeaders": {
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab29b9a2ca6012300231f0&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171c4da2ca600fe4c29764&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d26d0c76-b00d-4a17-8ab0-79d9d18ba1e7"
+ "7d3f0911-3fd0-4458-bb9d-3287eea8a1b0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "b485225f-7dec-4836-a855-52e85483377b"
+ "c7b3d1bb-26e0-45d2-937c-8487a7e4acef"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194041Z:b485225f-7dec-4836-a855-52e85483377b"
+ "WESTUS:20200721T164813Z:c7b3d1bb-26e0-45d2-937c-8487a7e4acef"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:40:41 GMT"
+ "Tue, 21 Jul 2020 16:48:13 GMT"
],
"Expires": [
"-1"
@@ -70,13 +70,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1673fe6a-d441-485e-9ef5-f165e489507a"
+ "4aa36ed6-614d-42d5-acc2-8fb8d259d351"
],
"If-Match": [
"*"
@@ -88,13 +88,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "174"
+ "173"
]
},
"ResponseHeaders": {
@@ -105,31 +105,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab2a16a2ca6012300231fc&asyncCode=200"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171caaa2ca600fe4c29770&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8cb36074-5725-4694-a9b5-f8c320c32d27"
+ "66a763dd-eab0-4e88-881c-969a226ff35f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-correlation-request-id": [
- "b8b43c88-4107-40f8-bbee-1d1480daa03e"
+ "582c6d3b-7dcb-4d26-98c8-9b4c153c3f5f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194214Z:b8b43c88-4107-40f8-bbee-1d1480daa03e"
+ "WESTUS:20200721T164946Z:582c6d3b-7dcb-4d26-98c8-9b4c153c3f5f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:13 GMT"
+ "Tue, 21 Jul 2020 16:49:45 GMT"
],
"Expires": [
"-1"
@@ -142,8 +142,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab29b9a2ca6012300231f0&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjI5YjlhMmNhNjAxMjMwMDIzMWYwJmFzeW5jQ29kZT0yMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171c4da2ca600fe4c29764&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjNGRhMmNhNjAwZmU0YzI5NzY0JmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -151,7 +151,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,34 +162,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADD8=\""
+ "\"AAAAAAAAPoo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6e74b261-3160-4591-b6a5-6df7e47dc303"
+ "00e0b5e0-379e-4bb7-9cc0-c1da8bbf57aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "2f4d20e7-e415-49bb-ba19-f67dbafc3a96"
+ "6c893730-e54b-4b9b-90f3-6d15741f43d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194111Z:2f4d20e7-e415-49bb-ba19-f67dbafc3a96"
+ "WESTUS:20200721T164843Z:6c893730-e54b-4b9b-90f3-6d15741f43d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:10 GMT"
+ "Tue, 21 Jul 2020 16:48:43 GMT"
],
"Content-Length": [
- "430"
+ "429"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,17 +198,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821/listValue?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da62c7dc-1b03-4b96-b8b8-0cf9137ac126"
+ "f3e12fe2-1ec2-48d2-9e11-9273cb2cfe23"
],
"Accept-Language": [
"en-US"
@@ -217,7 +217,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADD8=\""
+ "\"AAAAAAAAPoo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10799bb2-3d42-4c49-b1d8-1be2f1883d6d"
+ "e44ce490-0c2c-4c1e-b3b6-d1b0d6b5bcc2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "4efc5b52-2a3f-4e82-bfee-51fc2320342e"
+ "d6a7fa0a-6c84-4a6b-a371-fea0cfdbb9a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194111Z:4efc5b52-2a3f-4e82-bfee-51fc2320342e"
+ "WESTUS:20200721T164843Z:d6a7fa0a-6c84-4a6b-a371-fea0cfdbb9a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:10 GMT"
+ "Tue, 21 Jul 2020 16:48:43 GMT"
],
"Content-Length": [
"18"
@@ -264,17 +264,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps6015\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps2042\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821/listValue?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c4642ac-663d-4db6-a95d-acaf93600530"
+ "aab7ffa0-6521-40ee-8356-18e7d676dd9f"
],
"Accept-Language": [
"en-US"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,13 +294,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEI=\""
+ "\"AAAAAAAAPo0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "51261081-4510-41c6-abae-ad78a86ef6b3"
+ "6c89c739-6c12-4a50-ad19-d71a2c1caeaf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "361ee4cd-793c-44ad-811a-1f6452234f93"
+ "525aae9c-ebfc-417c-be75-9a5e033b08eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194245Z:361ee4cd-793c-44ad-811a-1f6452234f93"
+ "WESTUS:20200721T165016Z:525aae9c-ebfc-417c-be75-9a5e033b08eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:44 GMT"
+ "Tue, 21 Jul 2020 16:50:16 GMT"
],
"Content-Length": [
"18"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps6015\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps2042\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps907\",\r\n \"value\": \"ps6588\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps6493\",\r\n \"value\": \"ps7785\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8561780b-c6ba-4c17-a835-2d55ba32bfa4"
+ "d6d1232c-75c2-4732-8d5d-f5ad556c2351"
],
"Accept-Language": [
"en-US"
@@ -349,13 +349,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "101"
+ "102"
]
},
"ResponseHeaders": {
@@ -366,31 +366,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29d8a2ca6012300231f4&asyncCode=201"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c6ba2ca600fe4c29768&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ddeec002-c1d1-4828-a1c8-ae22b061a3bd"
+ "60f3aa1f-5c78-49af-ab59-ba8478f2bd4b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "12854d0a-24ad-4f4a-87cf-4ed8bf8f4f73"
+ "5b415f78-b643-4776-b0cc-d3f8d2a29b71"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194112Z:12854d0a-24ad-4f4a-87cf-4ed8bf8f4f73"
+ "WESTUS:20200721T164844Z:5b415f78-b643-4776-b0cc-d3f8d2a29b71"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:11 GMT"
+ "Tue, 21 Jul 2020 16:48:43 GMT"
],
"Expires": [
"-1"
@@ -403,13 +403,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps907\",\r\n \"value\": \"ps6588\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps6493\",\r\n \"value\": \"ps7785\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c5075b7-2670-46ba-a073-23b57bdb1989"
+ "1647788f-82ae-4813-9825-b8153b1c8bf3"
],
"If-Match": [
"*"
@@ -421,13 +421,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "173"
+ "174"
]
},
"ResponseHeaders": {
@@ -438,31 +438,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29f7a2ca6012300231f8&asyncCode=200"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c8ba2ca600fe4c2976c&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "954604ef-83c3-49fb-a846-19cd2b4999ff"
+ "85d6d0e8-bfd8-46be-8476-240eccbaf689"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "9ff96470-7f90-4edc-8377-9555821c35bf"
+ "f796d8d9-0a63-45ca-b8fb-f36228342f87"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194143Z:9ff96470-7f90-4edc-8377-9555821c35bf"
+ "WESTUS:20200721T164915Z:f796d8d9-0a63-45ca-b8fb-f36228342f87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:43 GMT"
+ "Tue, 21 Jul 2020 16:49:14 GMT"
],
"Expires": [
"-1"
@@ -475,8 +475,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29d8a2ca6012300231f4&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjI5ZDhhMmNhNjAxMjMwMDIzMWY0JmFzeW5jQ29kZT0yMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c6ba2ca600fe4c29768&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjNmJhMmNhNjAwZmU0YzI5NzY4JmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -484,7 +484,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,34 +495,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEA=\""
+ "\"AAAAAAAAPos=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a380472-6a95-4220-99f9-203bf69b9894"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "f443e3b3-a76e-483c-9a7f-71d59fc9233a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"x-ms-correlation-request-id": [
- "6fa87a5f-54f5-4c18-958f-cd31143c1bfe"
+ "a1a75597-e0ab-48bc-8847-c905bf826d12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194142Z:6fa87a5f-54f5-4c18-958f-cd31143c1bfe"
+ "WESTUS:20200721T164914Z:a1a75597-e0ab-48bc-8847-c905bf826d12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:13 GMT"
],
"Content-Length": [
- "351"
+ "352"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -531,7 +531,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 201
},
{
@@ -541,7 +541,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "536f91c3-6c46-4c7d-a2a5-5f895df8cbdb"
+ "6c373aa0-7dc0-4e9e-95e1-556019828193"
],
"Accept-Language": [
"en-US"
@@ -550,7 +550,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -564,25 +564,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52557017-1d31-46f0-a4e5-5a93623dc95e"
+ "35cb33bd-4b2c-457a-9d04-e35f424eeaeb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "859d7c75-8c03-4603-bf41-fee849dd12ef"
+ "eccf53ed-bb05-4048-aa41-a5ca3736937b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194142Z:859d7c75-8c03-4603-bf41-fee849dd12ef"
+ "WESTUS:20200721T164914Z:eccf53ed-bb05-4048-aa41-a5ca3736937b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:13 GMT"
],
"Content-Length": [
"924"
@@ -594,7 +594,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
@@ -604,7 +604,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4da6de3-dcab-4d6e-9b53-a2638511c488"
+ "93a6df01-3d25-4e51-a7f3-5493fd555a8f"
],
"Accept-Language": [
"en-US"
@@ -613,7 +613,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -627,25 +627,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ce230eaf-04ee-41dd-a97b-855211b97a78"
+ "a979c509-08f5-4151-a085-7a152720e4ff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "97d4b74f-2af7-40fc-944f-78992521851f"
+ "0e28e7a0-3334-45cd-9644-478d41ee2d49"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194142Z:97d4b74f-2af7-40fc-944f-78992521851f"
+ "WESTUS:20200721T164914Z:0e28e7a0-3334-45cd-9644-478d41ee2d49"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:13 GMT"
],
"Content-Length": [
"924"
@@ -657,7 +657,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
@@ -667,7 +667,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6201afe2-a102-4ba2-8089-c82bd9fef10d"
+ "c9be295e-6e19-4a9c-b084-2fd3e5c367de"
],
"Accept-Language": [
"en-US"
@@ -676,7 +676,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -690,28 +690,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b01a30ae-7728-4e2a-a0e6-27e4bc8cdd36"
+ "5efcea21-fd98-4180-9231-4d1f8414df45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "82cfe908-0be6-4bc9-a21d-cacc2800e37f"
+ "7f06eb64-8f6f-44b1-a732-d5992b72d296"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194142Z:82cfe908-0be6-4bc9-a21d-cacc2800e37f"
+ "WESTUS:20200721T164914Z:7f06eb64-8f6f-44b1-a732-d5992b72d296"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:13 GMT"
],
"Content-Length": [
- "530"
+ "529"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,17 +720,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9447e24-ffd4-4851-bc80-5d8dc8fef36e"
+ "b4167e69-7c57-4a94-8c4b-e1b6499fd491"
],
"Accept-Language": [
"en-US"
@@ -739,7 +739,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -750,34 +750,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEA=\""
+ "\"AAAAAAAAPos=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "17cb533e-b2e2-4c4e-9656-6500a90f36c7"
+ "2b4b6bd0-a796-4992-a3ec-6d7e8df78237"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-correlation-request-id": [
- "51526d61-7ce8-4183-80eb-fe6d99155967"
+ "ec3d32b4-8f39-440f-92f1-47969329876a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194142Z:51526d61-7ce8-4183-80eb-fe6d99155967"
+ "WESTUS:20200721T164914Z:ec3d32b4-8f39-440f-92f1-47969329876a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:14 GMT"
],
"Content-Length": [
- "351"
+ "352"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -786,17 +786,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35d20d0d-f463-4bf9-adbd-4d6b2e32445e"
+ "7834b6d4-cfaa-4c5f-91b7-63a2aea1af44"
],
"Accept-Language": [
"en-US"
@@ -805,7 +805,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,34 +816,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEA=\""
+ "\"AAAAAAAAPos=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f72b8d2d-95cf-442a-995f-c187342c6eda"
+ "9838fff8-ad03-4fb4-bae3-5fe8cececebe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
],
"x-ms-correlation-request-id": [
- "668ef9c1-a903-4b2c-996a-9e295a382da7"
+ "00ee51de-0d4a-410e-beb1-c65f7e130a97"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194143Z:668ef9c1-a903-4b2c-996a-9e295a382da7"
+ "WESTUS:20200721T164914Z:00ee51de-0d4a-410e-beb1-c65f7e130a97"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:14 GMT"
],
"Content-Length": [
- "351"
+ "352"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -852,17 +852,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc16fbb9-b2d4-4fab-ae7f-ef6685c10a0e"
+ "c6929899-f843-40db-ba08-7b9b76eb1a63"
],
"Accept-Language": [
"en-US"
@@ -871,7 +871,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -882,34 +882,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEE=\""
+ "\"AAAAAAAAPow=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "466f1500-3b09-4f5f-b559-94fc8746745c"
+ "88fcec3a-077a-4d37-b13d-69581ddb663e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-correlation-request-id": [
- "6d30b8eb-f28e-4a05-8b49-39c55f2e90f2"
+ "342a22bb-4fac-423e-a5f5-eaa042014e52"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194214Z:6d30b8eb-f28e-4a05-8b49-39c55f2e90f2"
+ "WESTUS:20200721T164945Z:342a22bb-4fac-423e-a5f5-eaa042014e52"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:13 GMT"
+ "Tue, 21 Jul 2020 16:49:44 GMT"
],
"Content-Length": [
- "404"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -918,17 +918,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7dfc20b0-3e11-4ff0-ae8b-27ebf7ea217c"
+ "a484a5ac-b6f3-457f-b98e-e192cdb66f17"
],
"Accept-Language": [
"en-US"
@@ -937,7 +937,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -951,25 +951,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5b6278a6-07fd-4420-be61-85328f6fb53c"
+ "eff8351f-c258-4ff6-9948-115535d30c89"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11986"
],
"x-ms-correlation-request-id": [
- "446ef8b5-256c-4661-ac07-205affa19f0a"
+ "7ef43b68-4566-4aeb-9758-98707cb33172"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194246Z:446ef8b5-256c-4661-ac07-205affa19f0a"
+ "WESTUS:20200721T165017Z:7ef43b68-4566-4aeb-9758-98707cb33172"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:46 GMT"
+ "Tue, 21 Jul 2020 16:50:17 GMT"
],
"Content-Length": [
"84"
@@ -985,13 +985,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3b54aa4-be3c-4f2b-8bb6-62ce338246ae"
+ "2c7cbf88-b3f0-4a6f-9acf-161413eae657"
],
"Accept-Language": [
"en-US"
@@ -1000,7 +1000,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1011,13 +1011,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEA=\""
+ "\"AAAAAAAAPos=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "66246bfd-38ca-4fa3-9dff-f730c33552ac"
+ "a3a65fb0-5e10-4cfe-a625-dafbefdae9f1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1026,16 +1026,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "f06e5cf4-1174-44cc-be1e-471cbefd644e"
+ "1ceca5b2-36af-4034-8e24-d19eb2d458e8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194143Z:f06e5cf4-1174-44cc-be1e-471cbefd644e"
+ "WESTUS:20200721T164914Z:1ceca5b2-36af-4034-8e24-d19eb2d458e8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:14 GMT"
],
"Content-Length": [
"18"
@@ -1047,17 +1047,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps6588\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e842d944-7606-4ac8-8299-6d9a387d6fe0"
+ "5a980633-3dfb-47e3-8683-1c7956646d9b"
],
"Accept-Language": [
"en-US"
@@ -1066,7 +1066,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1077,13 +1077,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEA=\""
+ "\"AAAAAAAAPos=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18a5f797-e36a-413a-a9fd-409b065985dd"
+ "ffd8bff2-9bdb-4247-8cae-92abecc87cf2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1092,16 +1092,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "6fa2b8c6-d4e7-4cf3-861b-40e42f2005e8"
+ "e51d6463-e3a6-4aae-ab75-7ecdff51e646"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194143Z:6fa2b8c6-d4e7-4cf3-861b-40e42f2005e8"
+ "WESTUS:20200721T164915Z:e51d6463-e3a6-4aae-ab75-7ecdff51e646"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:41:42 GMT"
+ "Tue, 21 Jul 2020 16:49:14 GMT"
],
"Content-Length": [
"18"
@@ -1113,17 +1113,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps6588\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94a7f86a-f9dd-46ee-a99e-b802e5a17981"
+ "018053cf-44e9-4ae9-a7c9-47ce79e4cad3"
],
"Accept-Language": [
"en-US"
@@ -1132,7 +1132,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1143,13 +1143,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEE=\""
+ "\"AAAAAAAAPow=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98387e4b-4528-4625-a48d-55310560239c"
+ "4122d3f1-335e-4fa3-b918-e77cad58b429"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1158,16 +1158,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "5274d28b-1207-455a-b9ea-cf99cb26546b"
+ "e7ffb687-2fa7-460a-8cfd-95a7c3c37513"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194214Z:5274d28b-1207-455a-b9ea-cf99cb26546b"
+ "WESTUS:20200721T164945Z:e7ffb687-2fa7-460a-8cfd-95a7c3c37513"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:13 GMT"
+ "Tue, 21 Jul 2020 16:49:44 GMT"
],
"Content-Length": [
"18"
@@ -1179,12 +1179,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps6588\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29f7a2ca6012300231f8&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjI5ZjdhMmNhNjAxMjMwMDIzMWY4JmFzeW5jQ29kZT0yMDA=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c8ba2ca600fe4c2976c&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjOGJhMmNhNjAwZmU0YzI5NzZjJmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1192,7 +1192,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1203,34 +1203,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEE=\""
+ "\"AAAAAAAAPow=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c9ed4506-c0a0-49b3-a0c7-035c154fd8c6"
+ "ee40f976-eb30-420e-9a8a-43b87946467c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11991"
],
"x-ms-correlation-request-id": [
- "a5490976-4486-4e5c-9fcc-7f256b29aad3"
+ "2d75d3f1-1a01-4d49-9d22-d53c51fc2d04"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194213Z:a5490976-4486-4e5c-9fcc-7f256b29aad3"
+ "WESTUS:20200721T164945Z:2d75d3f1-1a01-4d49-9d22-d53c51fc2d04"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:13 GMT"
+ "Tue, 21 Jul 2020 16:49:44 GMT"
],
"Content-Length": [
- "404"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1239,17 +1239,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c0743ba-d26b-419e-8768-491f2352428a"
+ "663958d5-1b88-47df-981d-45aa63d8749c"
],
"Accept-Language": [
"en-US"
@@ -1258,7 +1258,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1269,34 +1269,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADD8=\""
+ "\"AAAAAAAAPoo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "38312f99-f2ca-4d86-afd8-1ac558ff4c54"
+ "861b2a6d-adaa-4d32-8746-03d26ab6dfdc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11989"
],
"x-ms-correlation-request-id": [
- "396d1c2b-0ae0-41ca-8ef4-52daeaa2eb15"
+ "1a677cb9-3728-48de-98db-e0e86bfc9516"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194214Z:396d1c2b-0ae0-41ca-8ef4-52daeaa2eb15"
+ "WESTUS:20200721T164945Z:1a677cb9-3728-48de-98db-e0e86bfc9516"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:13 GMT"
+ "Tue, 21 Jul 2020 16:49:45 GMT"
],
"Content-Length": [
- "430"
+ "429"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1305,17 +1305,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1391c971-ce4d-4711-954c-26b3148f5653"
+ "71bbaa0c-ea01-4b86-a28b-f20e42896537"
],
"Accept-Language": [
"en-US"
@@ -1324,7 +1324,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1335,34 +1335,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEI=\""
+ "\"AAAAAAAAPo0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9ea32de2-0017-4e04-909d-58b97f8ff56c"
+ "0b461bde-f9bd-4fa3-844c-71834809378e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11987"
],
"x-ms-correlation-request-id": [
- "0f5f82f0-33f5-456b-8639-bb9fa6df08b1"
+ "359a9a18-403c-49c3-8e26-762954e1a97f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194244Z:0f5f82f0-33f5-456b-8639-bb9fa6df08b1"
+ "WESTUS:20200721T165016Z:359a9a18-403c-49c3-8e26-762954e1a97f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:44 GMT"
+ "Tue, 21 Jul 2020 16:50:16 GMT"
],
"Content-Length": [
- "405"
+ "404"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1371,17 +1371,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b50db100-88b5-4dc8-8852-ab84e46351a5"
+ "1ba13678-6543-4a02-9a5e-3270ff1db17b"
],
"Accept-Language": [
"en-US"
@@ -1390,7 +1390,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1404,25 +1404,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e88d0e53-5aec-4857-9791-b3f43a719c4e"
+ "c6d30f12-5ea3-4fe7-b2f4-058cc9a9cb4d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11985"
],
"x-ms-correlation-request-id": [
- "82de8d6c-eef9-4097-9d67-d6ee009549a0"
+ "98fe4c2b-0b13-48be-bd01-601d306a44de"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194247Z:82de8d6c-eef9-4097-9d67-d6ee009549a0"
+ "WESTUS:20200721T165017Z:98fe4c2b-0b13-48be-bd01-601d306a44de"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:46 GMT"
+ "Tue, 21 Jul 2020 16:50:17 GMT"
],
"Content-Length": [
"84"
@@ -1438,8 +1438,8 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab2a16a2ca6012300231fc&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjJhMTZhMmNhNjAxMjMwMDIzMWZjJmFzeW5jQ29kZT0yMDA=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171caaa2ca600fe4c29770&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjYWFhMmNhNjAwZmU0YzI5NzcwJmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1447,7 +1447,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1458,34 +1458,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAADEI=\""
+ "\"AAAAAAAAPo0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "368b077a-ccf0-4074-a773-12eb583ca798"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "ce559595-1b5c-4f80-a10d-725fa3f82fde"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
"x-ms-correlation-request-id": [
- "70f14ea8-fe8f-4896-bed9-9503719d1163"
+ "2a60e1da-ca2d-44ec-b04b-269f36da5f0d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194244Z:70f14ea8-fe8f-4896-bed9-9503719d1163"
+ "WESTUS:20200721T165016Z:2a60e1da-ca2d-44ec-b04b-269f36da5f0d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:43 GMT"
+ "Tue, 21 Jul 2020 16:50:16 GMT"
],
"Content-Length": [
- "405"
+ "404"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1494,17 +1494,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5063dc00-4a1b-4c32-a02e-97a67c684d93"
+ "b289cfea-9ff8-40a4-8680-d73e3f3155a6"
],
"If-Match": [
"*"
@@ -1516,7 +1516,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1530,7 +1530,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c7f4916b-d236-45da-80b8-3568157c9290"
+ "61a7fb2b-fd62-407a-8c0e-14cbafa3170e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1539,16 +1539,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "00ff195b-1992-4d94-b925-1954f0311d3f"
+ "1c9b559a-9966-4499-a380-73585f2821bf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194246Z:00ff195b-1992-4d94-b925-1954f0311d3f"
+ "WESTUS:20200721T165017Z:1c9b559a-9966-4499-a380-73585f2821bf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:45 GMT"
+ "Tue, 21 Jul 2020 16:50:17 GMT"
],
"Expires": [
"-1"
@@ -1561,13 +1561,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58ed9007-6d00-4411-b38f-d3ffa9a57a97"
+ "caf15eb9-9cc0-4fda-a194-edf5859272eb"
],
"If-Match": [
"*"
@@ -1579,7 +1579,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1593,7 +1593,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3baea818-4d31-42c9-a75e-2fea0e19c0d9"
+ "956b8781-80fb-4055-86c6-336fc6f96c6c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1602,16 +1602,16 @@
"14997"
],
"x-ms-correlation-request-id": [
- "110f83de-9610-4e48-9ea8-4b73fa4b5dbb"
+ "020b929f-fb88-4820-bf8a-be9bb9f91d38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194247Z:110f83de-9610-4e48-9ea8-4b73fa4b5dbb"
+ "WESTUS:20200721T165017Z:020b929f-fb88-4820-bf8a-be9bb9f91d38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:46 GMT"
+ "Tue, 21 Jul 2020 16:50:17 GMT"
],
"Expires": [
"-1"
@@ -1621,13 +1621,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9998b4e-eb8f-4312-97ed-9012fc351dd6"
+ "a20896c0-62a5-43d3-b5dd-e87c73bd9d94"
],
"If-Match": [
"*"
@@ -1639,7 +1639,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1653,7 +1653,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f7736d36-9e04-404e-900c-ede7ff8f7bd5"
+ "e86d37dd-11d3-4ae0-9fac-cd9a636cd1ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1662,16 +1662,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "b93eaa01-a783-48ed-bc09-9d2a01b4c7f9"
+ "f73adf6e-c6d4-4838-9e60-494ab0e10733"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194247Z:b93eaa01-a783-48ed-bc09-9d2a01b4c7f9"
+ "WESTUS:20200721T165017Z:f73adf6e-c6d4-4838-9e60-494ab0e10733"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:42:46 GMT"
+ "Tue, 21 Jul 2020 16:50:17 GMT"
],
"Expires": [
"-1"
@@ -1686,12 +1686,12 @@
],
"Names": {
"": [
- "ps2243",
- "ps4440",
- "ps6015",
- "ps7863",
- "ps907",
- "ps6588"
+ "ps3821",
+ "ps383",
+ "ps2042",
+ "ps4436",
+ "ps6493",
+ "ps7785"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json
index d08941c54327..7c62b8962f85 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ef81bfb-cbbb-4872-8b37-c53557a382c5"
+ "ed03a444-1286-4fa6-b363-68bb71b301c6"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9d4cf33c-9e6f-437e-aa4b-3e05b57881b9"
+ "78fad34d-1c46-4d39-86ba-7b39c4f42a78"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fb968645-6548-4296-8842-294361d1a2cd"
+ "24f91b08-747f-434b-bf6a-79dca096cb3e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193654Z:fb968645-6548-4296-8842-294361d1a2cd"
+ "WESTUS:20200721T164410Z:24f91b08-747f-434b-bf6a-79dca096cb3e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:54 GMT"
+ "Tue, 21 Jul 2020 16:44:10 GMT"
],
"Content-Length": [
"2859"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a81af88-fc5f-4ec4-9d48-a43b81c6d135"
+ "cae00baf-9652-4ae1-ae8c-d9f460106d27"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6786b02-0794-478c-910c-dfdefb4f1a5b"
+ "e73fae4e-bc96-448b-b64d-115e26383364"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "4a73a5fa-6950-45e4-acc7-e33fdb22cda1"
+ "8840921b-b827-4399-8dfa-65fbfd65c413"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193654Z:4a73a5fa-6950-45e4-acc7-e33fdb22cda1"
+ "WESTUS:20200721T164410Z:8840921b-b827-4399-8dfa-65fbfd65c413"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:54 GMT"
+ "Tue, 21 Jul 2020 16:44:10 GMT"
],
"Content-Length": [
"931"
@@ -136,7 +136,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f03faf7-257f-40b4-bab7-6d40d87bdb24"
+ "2405d5cb-eee4-4059-a1f4-868bbb820211"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ad6f58d7-a2f9-4001-b633-008d0cba7ab6"
+ "cfcace9c-9981-4c07-9d45-c71eded77c6b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "d1e34b01-7f1d-4081-bdc7-33a8b793ccb0"
+ "020cd301-36f1-4928-a75b-2e168d2b092f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193654Z:d1e34b01-7f1d-4081-bdc7-33a8b793ccb0"
+ "WESTUS:20200721T164410Z:020cd301-36f1-4928-a75b-2e168d2b092f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:54 GMT"
+ "Tue, 21 Jul 2020 16:44:10 GMT"
],
"Content-Length": [
"933"
@@ -202,7 +202,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43f49e22-52d5-4628-8967-54a1a6777731"
+ "4f1bfc1d-9870-4f52-99cc-4656a0b19caf"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,7 +228,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3bffa0ea-4857-4d52-a344-337e07c0b4af"
+ "cada1246-5182-4b81-b148-fe61d4b00fd2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +237,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "e99ff073-b765-42cc-906c-d652daf13788"
+ "23960317-44f2-4bf8-b372-38b30df6aff5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193654Z:e99ff073-b765-42cc-906c-d652daf13788"
+ "WESTUS:20200721T164411Z:23960317-44f2-4bf8-b372-38b30df6aff5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:54 GMT"
+ "Tue, 21 Jul 2020 16:44:10 GMT"
],
"Content-Length": [
"737"
@@ -262,13 +262,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps4593\",\r\n \"primaryKey\": \"ps5524\",\r\n \"secondaryKey\": \"ps6538\",\r\n \"state\": \"active\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps9572\",\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\",\r\n \"state\": \"active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0decd922-453c-45aa-a116-c569930ea761"
+ "4519311e-39a2-471f-bd72-94880982a120"
],
"Accept-Language": [
"en-US"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +294,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC3M=\""
+ "\"AAAAAAAAPbk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "55433ed3-840c-4aa0-8f2e-87eb692b961a"
+ "38327626-9e4b-481a-9b14-251f083829be"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "efc3b485-c526-4b77-b37d-b4d5cd18d428"
+ "c957ccd8-ccc7-4254-b65c-a639b6b46019"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193655Z:efc3b485-c526-4b77-b37d-b4d5cd18d428"
+ "WESTUS:20200721T164411Z:c957ccd8-ccc7-4254-b65c-a639b6b46019"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:54 GMT"
+ "Tue, 21 Jul 2020 16:44:11 GMT"
],
"Content-Length": [
"752"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6404\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps4593\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:36:55.1003613Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5524\",\r\n \"secondaryKey\": \"ps6538\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9572\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.2369986Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\",\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22d30718-1d71-4839-8d6e-78350e216abc"
+ "1befc243-b6e3-461d-b952-930320a749d1"
],
"Accept-Language": [
"en-US"
@@ -349,7 +349,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,13 +360,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC3M=\""
+ "\"AAAAAAAAPbk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bb79e49d-1aa9-4d7a-8cd4-dc6812489ecb"
+ "35730c35-6560-4fd0-9441-d6492af7c086"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "8d55a122-c260-4ed3-800c-4099144db60f"
+ "f3e9683d-cd6a-49b8-bd5f-76adac3caab1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193655Z:8d55a122-c260-4ed3-800c-4099144db60f"
+ "WESTUS:20200721T164411Z:f3e9683d-cd6a-49b8-bd5f-76adac3caab1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:54 GMT"
+ "Tue, 21 Jul 2020 16:44:11 GMT"
],
"Content-Length": [
"47"
@@ -396,17 +396,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps5524\",\r\n \"secondaryKey\": \"ps6538\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0b3d740-1a24-41a8-b6b9-c38b22548586"
+ "42a4afb1-cea9-489d-956a-f194b64920fa"
],
"Accept-Language": [
"en-US"
@@ -415,7 +415,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,13 +426,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC3Y=\""
+ "\"AAAAAAAAPbw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e498eb6f-3303-4eaa-9b57-b482e0b3dc37"
+ "da3645af-59b7-430f-9991-90d496e6556d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,16 +441,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "fd116993-125e-404b-8ed8-47e7409ae48f"
+ "57494c3e-d44f-4967-bf9e-451945b05bbc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193655Z:fd116993-125e-404b-8ed8-47e7409ae48f"
+ "WESTUS:20200721T164412Z:57494c3e-d44f-4967-bf9e-451945b05bbc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:55 GMT"
+ "Tue, 21 Jul 2020 16:44:12 GMT"
],
"Content-Length": [
"47"
@@ -462,17 +462,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps1864\",\r\n \"secondaryKey\": \"ps7489\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps5144\",\r\n \"secondaryKey\": \"ps4420\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps7456\",\r\n \"primaryKey\": \"ps1864\",\r\n \"secondaryKey\": \"ps7489\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps9795\",\r\n \"primaryKey\": \"ps5144\",\r\n \"secondaryKey\": \"ps4420\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0323ff28-8e1b-4e54-93c6-e2272bd763b1"
+ "ac731560-f301-4d72-9a71-dc49d23abe4f"
],
"If-Match": [
"*"
@@ -484,7 +484,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -504,7 +504,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "31888b68-5273-4626-a6f8-666d1a9fb6ac"
+ "1f9f084c-7074-49ef-ae7e-45001e2e60b8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -513,16 +513,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "d198cbac-b260-4450-b0bc-6d77bae99b48"
+ "1ebda6f1-4fe8-417e-aa7b-54be33074e40"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193655Z:d198cbac-b260-4450-b0bc-6d77bae99b48"
+ "WESTUS:20200721T164412Z:1ebda6f1-4fe8-417e-aa7b-54be33074e40"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:55 GMT"
+ "Tue, 21 Jul 2020 16:44:11 GMT"
],
"Expires": [
"-1"
@@ -532,13 +532,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa2188de-91a5-4e15-be95-9bfcfa955336"
+ "7aba5b1f-c81a-458b-a5cc-a10e24254b59"
],
"Accept-Language": [
"en-US"
@@ -547,7 +547,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -558,13 +558,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAC3Y=\""
+ "\"AAAAAAAAPbw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "17f7af9d-086c-479d-8015-b3179fdacbcb"
+ "e7c77af4-9f9a-48ae-819f-be85b1b22411"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,19 +573,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "5eb04748-88b3-4323-a09a-f52b55027a72"
+ "f5042f5f-b3c0-4adc-8c5a-13aa589a6f08"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193655Z:5eb04748-88b3-4323-a09a-f52b55027a72"
+ "WESTUS:20200721T164412Z:f5042f5f-b3c0-4adc-8c5a-13aa589a6f08"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:55 GMT"
+ "Tue, 21 Jul 2020 16:44:11 GMT"
],
"Content-Length": [
- "876"
+ "878"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -594,7 +594,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6404\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps7456\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:36:55.1Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9795\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.237Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -604,7 +604,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d48e0de-ed8a-433b-b2b6-ceb4ae7dddb2"
+ "b90950d8-a3d8-4021-849a-f4b512958f14"
],
"Accept-Language": [
"en-US"
@@ -613,7 +613,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -627,7 +627,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03479a14-f006-4a62-8360-ecc09b861bf0"
+ "612f8b5a-bf3f-41e0-92de-b31662f34d24"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -636,19 +636,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "6ca22730-7682-4a76-8c65-2b542cd678c9"
+ "e9ddedef-5c99-4ef6-a9a1-47f096a85b38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193656Z:6ca22730-7682-4a76-8c65-2b542cd678c9"
+ "WESTUS:20200721T164412Z:e9ddedef-5c99-4ef6-a9a1-47f096a85b38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:55 GMT"
+ "Tue, 21 Jul 2020 16:44:12 GMT"
],
"Content-Length": [
- "984"
+ "986"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -657,17 +657,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6404\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps7456\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:36:55.1Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9795\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.237Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fddd3281-b054-46d0-b408-c253f98815f2"
+ "c251fe5f-48eb-4cdb-82e1-806869bf2e44"
],
"If-Match": [
"*"
@@ -679,7 +679,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -693,7 +693,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9483048f-03f3-43f8-b61a-002494cb8209"
+ "79bfd9c3-4ba2-492f-97cf-419c52f676fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,16 +702,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "d90a30c4-9a92-4398-9d69-f393b71c6c5a"
+ "4328e7e3-759c-4f21-b4cc-f3846934b202"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193656Z:d90a30c4-9a92-4398-9d69-f393b71c6c5a"
+ "WESTUS:20200721T164412Z:4328e7e3-759c-4f21-b4cc-f3846934b202"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:36:55 GMT"
+ "Tue, 21 Jul 2020 16:44:12 GMT"
],
"Expires": [
"-1"
@@ -726,13 +726,13 @@
],
"Names": {
"": [
- "ps6404",
- "ps4593",
- "ps5524",
- "ps6538",
- "ps7456",
- "ps1864",
- "ps7489"
+ "ps8611",
+ "ps9572",
+ "ps5034",
+ "ps2307",
+ "ps9795",
+ "ps5144",
+ "ps4420"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json
index 475f24d179ed..c0868f4f0b45 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4fe8dd6-9f54-4a7c-b782-20ef60adcddd"
+ "83ceecd5-3432-40ca-87bf-892d972b852e"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,25 +30,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de18c818-6111-470f-9c20-cf7b54f0ffe3"
+ "0962af06-7329-448a-9a82-e2d3383f3da7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11999"
],
"x-ms-correlation-request-id": [
- "707afabd-9192-4054-a115-622155c78151"
+ "53687841-35d7-420d-98ed-34e91f624be9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193413Z:707afabd-9192-4054-a115-622155c78151"
+ "WESTUS:20200721T164123Z:53687841-35d7-420d-98ed-34e91f624be9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:12 GMT"
+ "Tue, 21 Jul 2020 16:41:23 GMT"
],
"Content-Length": [
"2859"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca0df150-151e-4fae-ba7b-6e0af35cb25a"
+ "191ada49-5fe1-42e1-ab03-74b4ceb58c2e"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,25 +96,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "71229b1f-df84-4a4d-a489-ff9c430f4de0"
+ "61930e22-600a-4b77-b4d5-1d38cafc4d2f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11998"
],
"x-ms-correlation-request-id": [
- "fca22cfa-7639-41ab-9251-783201459244"
+ "f95c0ec5-50fc-4f9c-9a15-029eba9c3e39"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193413Z:fca22cfa-7639-41ab-9251-783201459244"
+ "WESTUS:20200721T164123Z:f95c0ec5-50fc-4f9c-9a15-029eba9c3e39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:13 GMT"
+ "Tue, 21 Jul 2020 16:41:23 GMT"
],
"Content-Length": [
"931"
@@ -136,7 +136,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d54b0b6e-d813-4c0c-aefa-2e07a9e8be83"
+ "9e867f2a-190c-4b4d-b6b1-66f9f6160294"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,25 +162,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ee9412e4-e573-4946-ad79-181989e9018e"
+ "a89f75de-ec84-4cbf-a401-9047528054e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "c79bf8ea-c465-4e9f-a035-0bc4bb4faf7e"
+ "6df76fa2-1f6e-4c53-854e-c11c9d5d382e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193413Z:c79bf8ea-c465-4e9f-a035-0bc4bb4faf7e"
+ "WESTUS:20200721T164123Z:6df76fa2-1f6e-4c53-854e-c11c9d5d382e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:13 GMT"
+ "Tue, 21 Jul 2020 16:41:23 GMT"
],
"Content-Length": [
"99"
@@ -202,7 +202,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d94c18a4-f210-435c-b8d9-690cfa20d484"
+ "8f54e82a-42d7-45f8-8666-0bef99aa5986"
],
"Accept-Language": [
"en-US"
@@ -211,7 +211,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,25 +228,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c47e6ed-4f53-42de-a501-478a202472ab"
+ "0ad3e616-6902-4726-b9fe-d05da1850e51"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11997"
],
"x-ms-correlation-request-id": [
- "b13891f3-ab46-451b-b267-cded3f083f38"
+ "d2a64474-e711-4958-9574-f2ea685e4d31"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193413Z:b13891f3-ab46-451b-b267-cded3f083f38"
+ "WESTUS:20200721T164124Z:d2a64474-e711-4958-9574-f2ea685e4d31"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:13 GMT"
+ "Tue, 21 Jul 2020 16:41:24 GMT"
],
"Content-Length": [
"933"
@@ -268,7 +268,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5c63b58-2805-462e-9c48-824f1b347fba"
+ "4151dfb9-8e17-42e8-93c9-20344d143aae"
],
"Accept-Language": [
"en-US"
@@ -277,7 +277,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,25 +294,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4dbb126e-5150-450d-a6b0-e524682f295d"
+ "ae86477b-6200-4a22-9609-2303ce61828d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "fa0ee4f5-2665-4b19-aeea-d9e83651dc79"
+ "8ffea865-ad4a-4658-926c-e4cb3c80ed07"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193413Z:fa0ee4f5-2665-4b19-aeea-d9e83651dc79"
+ "WESTUS:20200721T164124Z:8ffea865-ad4a-4658-926c-e4cb3c80ed07"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:13 GMT"
+ "Tue, 21 Jul 2020 16:41:24 GMT"
],
"Content-Length": [
"99"
@@ -334,7 +334,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7292e907-8328-450a-b88d-3c083e5a0bcb"
+ "97bdc686-0b35-4b98-b7fc-38983795190d"
],
"Accept-Language": [
"en-US"
@@ -343,7 +343,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,25 +360,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d8455f8e-09a3-4bb4-888d-f63608a64cd7"
+ "2f744187-ef4d-4edc-81ff-72caeb93fb95"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11996"
],
"x-ms-correlation-request-id": [
- "8abc5e5e-33f6-475e-8f46-149b2bce9f3c"
+ "b633ecfe-3843-43f6-a075-617f03d53eb1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193414Z:8abc5e5e-33f6-475e-8f46-149b2bce9f3c"
+ "WESTUS:20200721T164124Z:b633ecfe-3843-43f6-a075-617f03d53eb1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:13 GMT"
+ "Tue, 21 Jul 2020 16:41:24 GMT"
],
"Content-Length": [
"737"
@@ -400,7 +400,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29fa1bf6-9af0-4cbe-af1d-db65a3005530"
+ "1ebb129e-1179-412b-be0f-7db494d38f8d"
],
"Accept-Language": [
"en-US"
@@ -409,7 +409,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,25 +426,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69002038-ba3d-4313-86bf-571c0ce9181c"
+ "29c539ac-4c58-4856-b1d1-cb3397e79ba9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "437661d7-7d84-436a-b251-7c283a503287"
+ "d91e462b-50ee-4a67-a05e-3389d5b42930"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193414Z:437661d7-7d84-436a-b251-7c283a503287"
+ "WESTUS:20200721T164124Z:d91e462b-50ee-4a67-a05e-3389d5b42930"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:13 GMT"
+ "Tue, 21 Jul 2020 16:41:24 GMT"
],
"Content-Length": [
"99"
@@ -466,7 +466,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 100\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d486317b-6cf4-40a4-9983-a6335b6cc4d2"
+ "cd25bc9a-d505-4f97-9f3c-a9d3a9a33736"
],
"If-Match": [
"*"
@@ -478,7 +478,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -498,25 +498,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c747050-55a0-4125-b4a5-124f57460cb1"
+ "194debfe-c498-474f-ad6f-4f430401ba6d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "16e14bf1-4e76-4400-bfc2-72d36b3c32bd"
+ "131d32bd-0a65-4c8f-b9fb-cab5f5b5367a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193414Z:16e14bf1-4e76-4400-bfc2-72d36b3c32bd"
+ "WESTUS:20200721T164125Z:131d32bd-0a65-4c8f-b9fb-cab5f5b5367a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:14 GMT"
+ "Tue, 21 Jul 2020 16:41:25 GMT"
],
"Expires": [
"-1"
@@ -526,13 +526,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps6641\",\r\n \"primaryKey\": \"ps2411\",\r\n \"secondaryKey\": \"ps2421\",\r\n \"state\": \"active\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps3031\",\r\n \"primaryKey\": \"ps2435\",\r\n \"secondaryKey\": \"ps2518\",\r\n \"state\": \"active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a62d7e5-eafe-4a69-a2b2-b474a6e96790"
+ "58dcf4a7-7485-46e8-9149-cff54d55b292"
],
"Accept-Language": [
"en-US"
@@ -541,7 +541,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -558,31 +558,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACu8=\""
+ "\"AAAAAAAAPRk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "259ad8e6-67c3-4312-a843-0ddb865b05aa"
+ "6ff1fa47-ec9f-4bbb-b5f9-5cf2e0489249"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "8cce3e00-cb9a-4e6d-8c0e-0a9fdd496306"
+ "54bc540b-519c-4e86-90e1-afc846d030fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193415Z:8cce3e00-cb9a-4e6d-8c0e-0a9fdd496306"
+ "WESTUS:20200721T164126Z:54bc540b-519c-4e86-90e1-afc846d030fe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:15 GMT"
+ "Tue, 21 Jul 2020 16:41:26 GMT"
],
"Content-Length": [
"1366"
@@ -594,17 +594,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps6641\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.1043708Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2411\",\r\n \"secondaryKey\": \"ps2421\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps3031\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.6217121Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2435\",\r\n \"secondaryKey\": \"ps2518\",\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps9148\",\r\n \"primaryKey\": \"ps9133\",\r\n \"secondaryKey\": \"ps1038\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps2323\",\r\n \"primaryKey\": \"ps1758\",\r\n \"secondaryKey\": \"ps8539\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90529bc0-488e-497d-bbcd-c7097bda8be3"
+ "ec37ba1b-bae1-45d7-983a-67183d966889"
],
"If-Match": [
"*"
@@ -616,7 +616,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -636,25 +636,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e197558f-b6c1-4237-bb52-8db0214b33f7"
+ "b0495875-6602-4d4d-a6e4-312157d97e35"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "333935f2-5cf7-4c4e-9faa-52e18ac16909"
+ "d3f25a6c-609e-49ad-95e7-80ec8116ebe3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193416Z:333935f2-5cf7-4c4e-9faa-52e18ac16909"
+ "WESTUS:20200721T164127Z:d3f25a6c-609e-49ad-95e7-80ec8116ebe3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:16 GMT"
+ "Tue, 21 Jul 2020 16:41:27 GMT"
],
"Expires": [
"-1"
@@ -664,13 +664,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0bbde9cb-c6b4-4953-8d00-a31cdba41b0f"
+ "ed58289a-a1e0-4acb-ac73-9204c0373684"
],
"Accept-Language": [
"en-US"
@@ -679,7 +679,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -690,31 +690,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACvI=\""
+ "\"AAAAAAAAPRw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9647bb28-607b-42a8-8498-a1d09c14b347"
+ "58c9b2f1-6d7a-4485-bf07-85284fa99f92"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11995"
],
"x-ms-correlation-request-id": [
- "17c5eca8-78ef-4465-8c15-7c0ef27b7c62"
+ "762315cd-5b25-4125-8dbf-1f9e267f066f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193417Z:17c5eca8-78ef-4465-8c15-7c0ef27b7c62"
+ "WESTUS:20200721T164127Z:762315cd-5b25-4125-8dbf-1f9e267f066f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:16 GMT"
+ "Tue, 21 Jul 2020 16:41:27 GMT"
],
"Content-Length": [
"935"
@@ -726,17 +726,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898/listSecrets?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fd822d2-27b2-463a-81c2-9e036db5d672"
+ "c230a965-2e94-49dd-ae0a-fca46238dc00"
],
"Accept-Language": [
"en-US"
@@ -745,7 +745,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,31 +756,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACvI=\""
+ "\"AAAAAAAAPRw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "88dda0a1-2172-4475-98b7-f1e1faff7ba5"
+ "75beea5a-0aa7-423d-bb2d-4e3421cfb4ce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1196"
],
"x-ms-correlation-request-id": [
- "a33807a9-8c8a-448a-9c62-ffdb97c2e469"
+ "4a49bdbf-8152-45f3-9451-c27ccd98a745"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193417Z:a33807a9-8c8a-448a-9c62-ffdb97c2e469"
+ "WESTUS:20200721T164127Z:4a49bdbf-8152-45f3-9451-c27ccd98a745"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:16 GMT"
+ "Tue, 21 Jul 2020 16:41:27 GMT"
],
"Content-Length": [
"47"
@@ -792,7 +792,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps9133\",\r\n \"secondaryKey\": \"ps1038\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps1758\",\r\n \"secondaryKey\": \"ps8539\"\r\n}",
"StatusCode": 200
},
{
@@ -802,7 +802,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac80cc9e-182b-4c3e-94f8-3ff1b0b07066"
+ "3ae7bdce-9099-4d0a-83b4-9ff799c76da9"
],
"Accept-Language": [
"en-US"
@@ -811,7 +811,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -825,25 +825,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f87cb5f-342e-44b7-a248-67c82925a244"
+ "0d4cf35c-9bf6-4c05-b902-39c0ed6eb5f4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11994"
],
"x-ms-correlation-request-id": [
- "46333802-aa0b-4c0c-969c-e04474524a5d"
+ "d6a898d3-2341-4812-8222-b4de7a5565e2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193417Z:46333802-aa0b-4c0c-969c-e04474524a5d"
+ "WESTUS:20200721T164128Z:d6a898d3-2341-4812-8222-b4de7a5565e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:16 GMT"
+ "Tue, 21 Jul 2020 16:41:28 GMT"
],
"Content-Length": [
"2105"
@@ -855,7 +855,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
@@ -865,7 +865,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e90db60-2ffb-4641-a5f2-fcdd4f937335"
+ "bb0ad458-9aea-41b2-8de3-27b0a6c28dcc"
],
"Accept-Language": [
"en-US"
@@ -874,7 +874,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -888,25 +888,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e7626f13-e811-4c51-9a3b-6b317513bc09"
+ "ff9114a2-af66-403f-9bca-8ce1ec782b18"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11993"
],
"x-ms-correlation-request-id": [
- "2bfaabd6-96d4-4d85-966c-f5abb97629b6"
+ "b00e8aac-74e8-4703-ae1b-c2e5098d6454"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193418Z:2bfaabd6-96d4-4d85-966c-f5abb97629b6"
+ "WESTUS:20200721T164129Z:b00e8aac-74e8-4703-ae1b-c2e5098d6454"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:17 GMT"
+ "Tue, 21 Jul 2020 16:41:29 GMT"
],
"Content-Length": [
"3103"
@@ -918,7 +918,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
@@ -928,7 +928,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b909703e-7978-4a9f-b19d-2d599ddc8119"
+ "245cf253-d029-48fd-afce-ef7c992e4739"
],
"Accept-Language": [
"en-US"
@@ -937,7 +937,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -951,25 +951,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06f119e0-738d-493b-814b-6b7c901661d4"
+ "78249b46-f307-43d4-9dbb-cdd6b328b7f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11992"
],
"x-ms-correlation-request-id": [
- "ef7978b5-1767-41d1-af08-36ddd96f2aa0"
+ "646f9aa7-4ca7-46fd-9a74-61d2aea8bded"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193418Z:ef7978b5-1767-41d1-af08-36ddd96f2aa0"
+ "WESTUS:20200721T164129Z:646f9aa7-4ca7-46fd-9a74-61d2aea8bded"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:18 GMT"
+ "Tue, 21 Jul 2020 16:41:29 GMT"
],
"Content-Length": [
"2053"
@@ -981,17 +981,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc95b2c8-9c05-4df6-9fa6-7d91fb46e873"
+ "92366edc-2040-436c-a888-2c4b530bed02"
],
"If-Match": [
"*"
@@ -1003,7 +1003,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1017,7 +1017,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d1d8fde1-98d5-4fa6-bff3-77f24666c97e"
+ "17e92f1f-51a9-4dc8-873f-035ad2463153"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1026,16 +1026,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "68327bbb-0248-4d45-901c-049b8218a8e5"
+ "b0f2692b-f057-48e4-b4ff-56c85f874204"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193418Z:68327bbb-0248-4d45-901c-049b8218a8e5"
+ "WESTUS:20200721T164129Z:b0f2692b-f057-48e4-b4ff-56c85f874204"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:18 GMT"
+ "Tue, 21 Jul 2020 16:41:29 GMT"
],
"Expires": [
"-1"
@@ -1050,13 +1050,13 @@
],
"Names": {
"": [
- "ps7062",
- "ps6641",
- "ps2411",
- "ps2421",
- "ps9148",
- "ps9133",
- "ps1038"
+ "ps6898",
+ "ps3031",
+ "ps2435",
+ "ps2518",
+ "ps2323",
+ "ps1758",
+ "ps8539"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json
index 8ca771d0336a..4f6814cd9b60 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ee73e9b-5113-4fac-a769-9bfd8d64b0be"
+ "c69db0b6-3e3f-4b59-b21b-b681de5d5902"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -27,31 +27,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACHcAAAAAAAAAAA==\""
+ "\"AAAAAAAALyAAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2d0c06ed-eebf-4bd2-93df-6e9730384721"
+ "8d88d837-ac5e-49ff-bfa6-1136b85c2542"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11999"
],
"x-ms-correlation-request-id": [
- "ecc3e602-3ab1-4f28-9e18-9a42ecf471f3"
+ "2ccf4111-4472-445b-a2da-7f51e56f39d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193409Z:ecc3e602-3ab1-4f28-9e18-9a42ecf471f3"
+ "WESTUS:20200721T164119Z:2ccf4111-4472-445b-a2da-7f51e56f39d3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:08 GMT"
+ "Tue, 21 Jul 2020 16:41:19 GMT"
],
"Content-Length": [
"74"
@@ -73,7 +73,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af3c0f94-4848-4afe-a6c0-219826ee33e3"
+ "19db0907-f880-48b4-bd3b-b876d20eea36"
],
"Accept-Language": [
"en-US"
@@ -82,7 +82,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,31 +93,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACucAAAAAAAAAAA==\""
+ "\"AAAAAAAAPRQAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f0ccdf43-ba81-4227-b66c-b484cf32ab95"
+ "96387a12-78c6-4576-be97-4ab99381329e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11998"
],
"x-ms-correlation-request-id": [
- "011ae3a0-3d78-4fb9-b512-a9cbf7d7f930"
+ "8b376a42-b6f0-40f1-bcc7-2ddfefeba992"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193409Z:011ae3a0-3d78-4fb9-b512-a9cbf7d7f930"
+ "WESTUS:20200721T164120Z:8b376a42-b6f0-40f1-bcc7-2ddfefeba992"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:09 GMT"
+ "Tue, 21 Jul 2020 16:41:19 GMT"
],
"Content-Length": [
"73"
@@ -139,7 +139,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a894a2e-36da-4f70-9050-a3d8921f3f1a"
+ "7cff416c-32ca-462e-9e93-9353330029bf"
],
"Accept-Language": [
"en-US"
@@ -148,7 +148,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,31 +159,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACugAAAAAAAAAAA==\""
+ "\"AAAAAAAAPRUAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fea213f1-d85d-4b58-a335-eaeb0937acd9"
+ "0cf6676d-93df-4eb3-9f5a-5f4d06ae4b76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11997"
],
"x-ms-correlation-request-id": [
- "b3e6d621-032f-4bda-854b-f46cec37b2ba"
+ "0e68cfa9-70ca-44fb-bf7c-be38ff40c34d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193409Z:b3e6d621-032f-4bda-854b-f46cec37b2ba"
+ "WESTUS:20200721T164120Z:0e68cfa9-70ca-44fb-bf7c-be38ff40c34d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:09 GMT"
+ "Tue, 21 Jul 2020 16:41:20 GMT"
],
"Content-Length": [
"74"
@@ -205,7 +205,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c160f4e1-858a-4e2f-9562-80753f89259c"
+ "8832bf0c-c010-462c-bee3-f5f13ef3ee81"
],
"If-Match": [
"*"
@@ -217,7 +217,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -237,25 +237,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c90c5c32-c46e-4794-857b-5ccb10bca135"
+ "60b5d913-4c34-4906-a958-1359f03b0c16"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "01261e1c-cec2-43d5-af84-931044ca0ff6"
+ "a754b380-7061-4777-925a-4a8b470395d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193409Z:01261e1c-cec2-43d5-af84-931044ca0ff6"
+ "WESTUS:20200721T164119Z:a754b380-7061-4777-925a-4a8b470395d4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:08 GMT"
+ "Tue, 21 Jul 2020 16:41:19 GMT"
],
"Expires": [
"-1"
@@ -271,7 +271,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b4e2124-9423-4a2f-a310-e66fc28ba68f"
+ "9fe98719-4fb3-4aaa-81eb-e7db3c39970c"
],
"If-Match": [
"*"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -303,25 +303,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0e1459c7-799c-4a77-bb2e-d5f3b34c39a1"
+ "18cca37f-3153-47a3-9711-559048000cac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "bff38742-4f1b-47e8-b673-8db2e8050a30"
+ "fc1d165f-b167-47a2-8182-6533fdf3edfa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193409Z:bff38742-4f1b-47e8-b673-8db2e8050a30"
+ "WESTUS:20200721T164120Z:fc1d165f-b167-47a2-8182-6533fdf3edfa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:09 GMT"
+ "Tue, 21 Jul 2020 16:41:20 GMT"
],
"Expires": [
"-1"
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json
index 27b10f1ae300..cca5efa8c924 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9150c43c-c967-42c9-9e2d-1b0a4d710331"
+ "0e5d1416-8c34-42e4-b3ea-09c5b893861e"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "90b70796-2812-481d-b3ca-f5e1903df485"
+ "b525785c-96d5-477d-be22-413357b2b130"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "4028426c-e93a-43e9-8a19-585780e602f9"
+ "f7c56ed3-4f43-418b-9063-fef7f1ddf6ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193016Z:4028426c-e93a-43e9-8a19-585780e602f9"
+ "WESTUS:20200721T163659Z:f7c56ed3-4f43-418b-9063-fef7f1ddf6ce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:15 GMT"
+ "Tue, 21 Jul 2020 16:36:58 GMT"
],
"Content-Length": [
"65"
@@ -73,7 +73,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7971ad50-5139-48f1-883d-df2e4808651e"
+ "d5e3c800-60c9-428f-9795-d16729610524"
],
"Accept-Language": [
"en-US"
@@ -82,7 +82,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "479aa4aa-5390-453a-aa45-2182cfeac1a9"
+ "e638b5b5-26e9-4ac2-9876-587e60e672ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,19 +105,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "5a4dee69-f7ad-464a-8553-23b130be80fe"
+ "454851b3-5605-4a3c-b369-109940d67d1f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193017Z:5a4dee69-f7ad-464a-8553-23b130be80fe"
+ "WESTUS:20200721T163700Z:454851b3-5605-4a3c-b369-109940d67d1f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:16 GMT"
+ "Tue, 21 Jul 2020 16:36:59 GMT"
],
"Content-Length": [
- "158"
+ "310"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,7 +126,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"branch\": null,\r\n \"commitId\": null,\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": null,\r\n \"configurationChangeDate\": \"2020-04-30T19:30:12.5573121Z\"\r\n}",
+ "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"e6d0a3ac0e9a3dc8f123543a010e30c5bc5fed80\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-06-29T23:31:25.2462656Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:36:41.9091266Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5efa79b7a2ca601994fb7d21\"\r\n}",
"StatusCode": 200
},
{
@@ -136,7 +136,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d2879fd-ce39-458f-b5bc-22167e914e77"
+ "497c0c89-47bd-4c75-a2c2-31f69e22e2d7"
],
"Accept-Language": [
"en-US"
@@ -145,7 +145,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8fa37a20-b1b5-4402-8d16-b61b10ef1c56"
+ "543d1d8a-6ad8-4c86-891f-b6da5f246d91"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -168,16 +168,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "884687c0-cfc7-439f-b48d-d5d73e2d9df9"
+ "b37c2e05-316b-4b3d-a46e-77eed2c7ed54"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193117Z:884687c0-cfc7-439f-b48d-d5d73e2d9df9"
+ "WESTUS:20200721T163801Z:b37c2e05-316b-4b3d-a46e-77eed2c7ed54"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:17 GMT"
+ "Tue, 21 Jul 2020 16:38:00 GMT"
],
"Content-Length": [
"308"
@@ -189,7 +189,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6821959346515a60776d836a09dd2668a05c4ef9\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-04-30T19:30:58.1368849Z\",\r\n \"configurationChangeDate\": \"2020-04-30T19:30:12.5573121Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5eab2749a2ca601230023141\"\r\n}",
+ "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"3191e287ef2b3f39bb2216dfe9fa443cf7198795\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-07-21T16:37:34.5809747Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:36:41.9091266Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2\"\r\n}",
"StatusCode": 200
},
{
@@ -199,7 +199,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e0238ec-055d-413b-b8e2-f7acf9469f89"
+ "5cc7811d-899b-4bce-8719-da35ede3fd9c"
],
"Accept-Language": [
"en-US"
@@ -208,7 +208,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -222,7 +222,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0b7cb5ff-6a6f-419d-be7e-5a7ee5519c52"
+ "17cf34b4-8e1e-45c7-afbb-e131574faa48"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -231,16 +231,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "c346ecb5-9786-4e1f-9f15-c863d6d122cf"
+ "87df6eb3-0caa-4ade-8b1c-e978c4f4ff45"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193219Z:c346ecb5-9786-4e1f-9f15-c863d6d122cf"
+ "WESTUS:20200721T163902Z:87df6eb3-0caa-4ade-8b1c-e978c4f4ff45"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:18 GMT"
+ "Tue, 21 Jul 2020 16:39:01 GMT"
],
"Content-Length": [
"309"
@@ -252,7 +252,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6821959346515a60776d836a09dd2668a05c4ef9\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-04-30T19:32:18.2505365Z\",\r\n \"configurationChangeDate\": \"2020-04-30T19:32:18.2505365Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5eab27a4a2ca601230023145\"\r\n}",
+ "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"3191e287ef2b3f39bb2216dfe9fa443cf7198795\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-07-21T16:38:52.9247515Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:38:52.9247515Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6\"\r\n}",
"StatusCode": 200
},
{
@@ -262,7 +262,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "108e765a-6fff-40ce-9b10-3cc904f7a4f6"
+ "53050938-4910-4c95-922a-c35439837a37"
],
"Accept-Language": [
"en-US"
@@ -271,7 +271,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -288,13 +288,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18ac2343-979a-4797-9959-e9b7903b5982"
+ "48f4c365-4a8c-4563-a55a-aeb0751cfaf1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -303,16 +303,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "0eb3e5be-9109-4b8c-b3a7-b0da0a148c51"
+ "05fafed5-05ed-405e-9961-d6dd86f6c57d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193017Z:0eb3e5be-9109-4b8c-b3a7-b0da0a148c51"
+ "WESTUS:20200721T163700Z:05fafed5-05ed-405e-9961-d6dd86f6c57d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:16 GMT"
+ "Tue, 21 Jul 2020 16:36:59 GMT"
],
"Content-Length": [
"33"
@@ -324,12 +324,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3NDlhMmNhNjAxMjMwMDIzMTQxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -337,7 +337,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -348,13 +348,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b81c3ed0-e5b4-4e62-84e5-0b0249968b4f"
+ "de9d0215-c681-4d21-acb7-d2d0be717a4a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -363,19 +363,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "93de5387-c387-4b5b-86e3-038c470dcfaa"
+ "f627a4c5-41f4-4432-bb49-ce7aa9918fef"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193047Z:93de5387-c387-4b5b-86e3-038c470dcfaa"
+ "WESTUS:20200721T163730Z:f627a4c5-41f4-4432-bb49-ce7aa9918fef"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:30:47 GMT"
+ "Tue, 21 Jul 2020 16:37:30 GMT"
],
"Content-Length": [
- "158"
+ "156"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -384,12 +384,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\",\r\n \"status\": \"InProgress\",\r\n \"started\": \"2020-04-30T19:30:17.34Z\",\r\n \"updated\": \"2020-04-30T19:30:17.34Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"InProgress\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:00.3Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3NDlhMmNhNjAxMjMwMDIzMTQxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -397,7 +397,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -411,7 +411,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dfe98632-f85d-4a73-abd3-913842ba7933"
+ "71168530-71d3-4f70-8958-a2309cb3c3f8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -420,19 +420,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "99322ecf-99b5-4439-8526-14852d97e487"
+ "cc4138ef-7717-4c61-9587-7499dca84eb5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193117Z:99322ecf-99b5-4439-8526-14852d97e487"
+ "WESTUS:20200721T163800Z:cc4138ef-7717-4c61-9587-7499dca84eb5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:17 GMT"
+ "Tue, 21 Jul 2020 16:38:00 GMT"
],
"Content-Length": [
- "273"
+ "272"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -441,12 +441,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:30:17.34Z\",\r\n \"updated\": \"2020-04-30T19:30:58.137Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 6821959346515a60776d836a09dd2668a05c4ef9.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:34.567Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3NDlhMmNhNjAxMjMwMDIzMTQxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -454,7 +454,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -468,7 +468,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86a4f487-f2e0-4ccb-9a63-c9bea720b046"
+ "5b187e51-73cb-49ba-a878-bfe955dfaa97"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -477,19 +477,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "287b9363-60f1-4f24-8021-6b7d98a522f7"
+ "69714d75-9892-4913-9a1d-49100f2e9066"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193117Z:287b9363-60f1-4f24-8021-6b7d98a522f7"
+ "WESTUS:20200721T163801Z:69714d75-9892-4913-9a1d-49100f2e9066"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:17 GMT"
+ "Tue, 21 Jul 2020 16:38:00 GMT"
],
"Content-Length": [
- "273"
+ "272"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -498,7 +498,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:30:17.34Z\",\r\n \"updated\": \"2020-04-30T19:30:58.137Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 6821959346515a60776d836a09dd2668a05c4ef9.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:34.567Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
"StatusCode": 200
},
{
@@ -508,7 +508,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce05e9c2-3534-48a6-941b-91ceaf59ee93"
+ "58f69980-62e0-4781-971d-6d58d748227c"
],
"Accept-Language": [
"en-US"
@@ -517,7 +517,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -534,13 +534,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2786a2ca601230023143?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "293d1832-9317-4119-a348-0f57a84c5974"
+ "71cdf15a-35c9-430c-a575-ad83c830f1b5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -549,16 +549,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "0cbd902c-06fe-4a9a-887f-d248d6b1ce26"
+ "0fd79ca0-1243-44a4-b815-7b7e750af262"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193118Z:0cbd902c-06fe-4a9a-887f-d248d6b1ce26"
+ "WESTUS:20200721T163801Z:0fd79ca0-1243-44a4-b815-7b7e750af262"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:17 GMT"
+ "Tue, 21 Jul 2020 16:38:00 GMT"
],
"Content-Length": [
"33"
@@ -570,12 +570,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2786a2ca601230023143\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2786a2ca601230023143?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3ODZhMmNhNjAxMjMwMDIzMTQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5ZTlhMmNhNjAwZmU0YzI5NmE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -583,7 +583,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -597,28 +597,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "875fe5e0-abf3-46f6-a3cb-0afffc98b658"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "23317c68-274f-43f0-ad07-be301f531d06"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
"x-ms-correlation-request-id": [
- "f921b45a-7592-471e-9201-b45540859c50"
+ "9cbcab93-3608-4f4d-ba28-aacf71d1689b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193148Z:f921b45a-7592-471e-9201-b45540859c50"
+ "WESTUS:20200721T163831Z:9cbcab93-3608-4f4d-ba28-aacf71d1689b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:47 GMT"
+ "Tue, 21 Jul 2020 16:38:31 GMT"
],
"Content-Length": [
- "196"
+ "279"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -627,12 +627,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2786a2ca601230023143\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:18.07Z\",\r\n \"updated\": \"2020-04-30T19:31:29.493Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:01.323Z\",\r\n \"updated\": \"2020-07-21T16:38:09.533Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2786a2ca601230023143?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3ODZhMmNhNjAxMjMwMDIzMTQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5ZTlhMmNhNjAwZmU0YzI5NmE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -640,7 +640,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -654,7 +654,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a975fed2-b795-47f8-8f7c-8b719a4249a6"
+ "246a3594-e993-45a7-88ea-1fef08c9a631"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -663,19 +663,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "8b62abe9-e5b1-4797-ad0a-9e3ecceabc64"
+ "f0b4ac53-0979-4105-9187-cbb4cfac25f2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193148Z:8b62abe9-e5b1-4797-ad0a-9e3ecceabc64"
+ "WESTUS:20200721T163831Z:f0b4ac53-0979-4105-9187-cbb4cfac25f2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:47 GMT"
+ "Tue, 21 Jul 2020 16:38:31 GMT"
],
"Content-Length": [
- "196"
+ "279"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -684,7 +684,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab2786a2ca601230023143\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:18.07Z\",\r\n \"updated\": \"2020-04-30T19:31:29.493Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:01.323Z\",\r\n \"updated\": \"2020-07-21T16:38:09.533Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -694,7 +694,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "859cd6dc-e5aa-4b18-9246-46ee81e5f44c"
+ "fd1f0acb-fcaf-4757-a2da-1c803ef4296f"
],
"Accept-Language": [
"en-US"
@@ -703,7 +703,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,13 +720,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab27a4a2ca601230023145?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "746044dd-7540-4dfd-ba23-c7fb92b53b04"
+ "21b41989-ae78-45f3-bdc8-2932fefadf01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -735,16 +735,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "f14e1f5d-6c23-419c-8b15-a73fe88197bd"
+ "9554df38-ea0f-4c50-add0-8ee6978fc46b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193148Z:f14e1f5d-6c23-419c-8b15-a73fe88197bd"
+ "WESTUS:20200721T163832Z:9554df38-ea0f-4c50-add0-8ee6978fc46b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:31:48 GMT"
+ "Tue, 21 Jul 2020 16:38:31 GMT"
],
"Content-Length": [
"33"
@@ -756,12 +756,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab27a4a2ca601230023145\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab27a4a2ca601230023145?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3YTRhMmNhNjAxMjMwMDIzMTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzFhMDdhMmNhNjAwZmU0YzI5NmE2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -769,7 +769,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -783,7 +783,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fe7791e8-6b6f-4031-899f-58393578fbdc"
+ "28f469d8-e923-4f15-b372-99aaf34e15bd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -792,19 +792,19 @@
"11991"
],
"x-ms-correlation-request-id": [
- "62b201ad-963d-4230-b260-01db72492a94"
+ "af6d6887-f4d5-4826-9370-f04564485153"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193219Z:62b201ad-963d-4230-b260-01db72492a94"
+ "WESTUS:20200721T163902Z:af6d6887-f4d5-4826-9370-f04564485153"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:18 GMT"
+ "Tue, 21 Jul 2020 16:39:01 GMT"
],
"Content-Length": [
- "378"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -813,12 +813,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab27a4a2ca601230023145\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:48.64Z\",\r\n \"updated\": \"2020-04-30T19:32:18.237Z\",\r\n \"resultInfo\": \"Latest commit 6821959346515a60776d836a09dd2668a05c4ef9 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:31.873Z\",\r\n \"updated\": \"2020-07-21T16:38:52.923Z\",\r\n \"resultInfo\": \"Latest commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 1. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab27a4a2ca601230023145?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3YTRhMmNhNjAxMjMwMDIzMTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzFhMDdhMmNhNjAwZmU0YzI5NmE2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -826,7 +826,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -840,7 +840,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a449a604-99e3-4ec9-a541-3cf8350d976b"
+ "5317475e-8446-4cbf-b725-8c05e8796fab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -849,19 +849,19 @@
"11990"
],
"x-ms-correlation-request-id": [
- "a3c209b9-6afc-4922-94ae-d4993a40baa6"
+ "d1f27ade-99e4-4353-8374-8f0442f9b4d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193219Z:a3c209b9-6afc-4922-94ae-d4993a40baa6"
+ "WESTUS:20200721T163902Z:d1f27ade-99e4-4353-8374-8f0442f9b4d7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:32:18 GMT"
+ "Tue, 21 Jul 2020 16:39:01 GMT"
],
"Content-Length": [
- "378"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -870,7 +870,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5eab27a4a2ca601230023145\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:48.64Z\",\r\n \"updated\": \"2020-04-30T19:32:18.237Z\",\r\n \"resultInfo\": \"Latest commit 6821959346515a60776d836a09dd2668a05c4ef9 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:31.873Z\",\r\n \"updated\": \"2020-07-21T16:38:52.923Z\",\r\n \"resultInfo\": \"Latest commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 1. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
}
],
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json
index 88dd2dabc2ea..8b8d0015cb0c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b537e799-d194-4319-9f85-7169c2392b29"
+ "44755b87-7c48-41dc-abb7-114a3f9fcd1f"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -30,7 +30,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "49b585ec-ea76-411e-bad6-d1df18559f48"
+ "892a338d-14af-49fd-868b-a5f0015d85e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +39,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "440cc38f-e238-4ae2-b420-565b2cb40a4d"
+ "5afa3071-9afc-480f-807b-f4ce0f7d98b7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193359Z:440cc38f-e238-4ae2-b420-565b2cb40a4d"
+ "WESTUS:20200721T164108Z:5afa3071-9afc-480f-807b-f4ce0f7d98b7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:58 GMT"
+ "Tue, 21 Jul 2020 16:41:08 GMT"
],
"Content-Length": [
"664"
@@ -70,7 +70,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b5a13f64-66e7-476f-be07-0c3c45080ece"
+ "41d99227-bac5-4eb0-a474-89d9cf455134"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACrAAAAAAAAAIdA==\""
+ "\"AAAAAAAAPNsAAAAAAAAIdA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db62b3db-2b45-47dd-b5af-e292474f9fca"
+ "d8e0212a-55b8-4a03-baff-13a6c6abef36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "4b31946b-40c7-4c43-9c52-a15ef1c7422e"
+ "7ef710f9-8de5-4fac-90e8-61696e8885be"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193359Z:4b31946b-40c7-4c43-9c52-a15ef1c7422e"
+ "WESTUS:20200721T164109Z:7ef710f9-8de5-4fac-90e8-61696e8885be"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:58 GMT"
+ "Tue, 21 Jul 2020 16:41:08 GMT"
],
"Content-Length": [
"548"
@@ -130,13 +130,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps4097\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps1405\",\r\n \"lastName\": \"ps8226\",\r\n \"password\": \"ps9902\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps6330\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"password\": \"ps348\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb628fda-0cec-495c-a23d-f2db35c4c99e"
+ "2e12639a-b3cd-4562-af85-cff07179389c"
],
"Accept-Language": [
"en-US"
@@ -145,13 +145,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "195"
+ "193"
]
},
"ResponseHeaders": {
@@ -162,13 +162,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACtMAAAAAAAAK1Q==\""
+ "\"AAAAAAAAPP8AAAAAAAA9Ag==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89a937a9-a7fb-467d-95a3-92089fdf6ff5"
+ "643ebadb-1f41-4c67-8059-e983d1fbbe43"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,19 +177,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "23d04369-992d-4766-9bf7-e28bed694ca3"
+ "b72d24ad-d3c0-44c7-8a20-dde0160f9347"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193400Z:23d04369-992d-4766-9bf7-e28bed694ca3"
+ "WESTUS:20200721T164110Z:b72d24ad-d3c0-44c7-8a20-dde0160f9347"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:59 GMT"
+ "Tue, 21 Jul 2020 16:41:09 GMT"
],
"Content-Length": [
- "1053"
+ "1052"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,17 +198,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps1405\",\r\n \"lastName\": \"ps8226\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps4097\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps6330\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "04558d9f-6cff-4740-af2b-2fa060e71162"
+ "ad8681ac-1f1a-44fe-b165-2d8a9f2acb93"
],
"Accept-Language": [
"en-US"
@@ -217,7 +217,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACtMAAAAAAAAK1Q==\""
+ "\"AAAAAAAAPP8AAAAAAAA9Ag==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "baedb867-ed6b-455c-9b7a-cde982ab7980"
+ "6a3bdda9-9d21-4416-a93f-24246d26b8b2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,19 +243,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "11d5db47-881a-4ef5-b14e-de2c52fce34e"
+ "f9c6b71e-4c93-40bd-b06d-332a1c9bcecc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193400Z:11d5db47-881a-4ef5-b14e-de2c52fce34e"
+ "WESTUS:20200721T164110Z:f9c6b71e-4c93-40bd-b06d-332a1c9bcecc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:33:59 GMT"
+ "Tue, 21 Jul 2020 16:41:09 GMT"
],
"Content-Length": [
- "579"
+ "578"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,17 +264,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps1405\",\r\n \"lastName\": \"ps8226\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps4097\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps6330\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "689add41-42d3-4fae-b180-4d2ab3bec85b"
+ "5dc9587d-b772-4990-b1ce-7dd290349678"
],
"Accept-Language": [
"en-US"
@@ -283,7 +283,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,13 +294,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACtkAAAAAAAAK2g==\""
+ "\"AAAAAAAAPQYAAAAAAAA9Bw==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70b4d3fb-5be5-417e-9c4d-37039163896a"
+ "74669af4-20e6-415a-b7c0-fc94d51e8bf2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,19 +309,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "25d83d89-9158-4593-b553-d46865469662"
+ "1db45beb-e2d4-4634-b1e5-d7d6d19d3612"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193402Z:25d83d89-9158-4593-b553-d46865469662"
+ "WESTUS:20200721T164112Z:1db45beb-e2d4-4634-b1e5-d7d6d19d3612"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:02 GMT"
+ "Tue, 21 Jul 2020 16:41:12 GMT"
],
"Content-Length": [
- "585"
+ "586"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "232fd262-0677-4dfa-9dfa-baf35208cea6"
+ "d070ea55-efe1-4d8f-b3fb-6bd3629262f7"
],
"Accept-Language": [
"en-US"
@@ -349,7 +349,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,13 +360,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACt0AAAAAAAAK3g==\""
+ "\"AAAAAAAAPQoAAAAAAAA9Cw==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "259bea17-669c-4ce1-a2de-5170afd1bc05"
+ "8e7a8e93-250a-422e-858a-1cf4a266229b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,19 +375,19 @@
"11991"
],
"x-ms-correlation-request-id": [
- "ca6c48fd-74b5-421b-8e26-e89bb0150d0d"
+ "8b8c23ae-adfd-4bee-800b-81f265d1091e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193403Z:ca6c48fd-74b5-421b-8e26-e89bb0150d0d"
+ "WESTUS:20200721T164114Z:8b8c23ae-adfd-4bee-800b-81f265d1091e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:03 GMT"
+ "Tue, 21 Jul 2020 16:41:13 GMT"
],
"Content-Length": [
- "586"
+ "587"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,17 +396,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d5c52f6-ee44-4807-8cbb-56d4e8f46f5e"
+ "3f0a0573-795b-4b2f-82e5-2132b2d5e5e9"
],
"Accept-Language": [
"en-US"
@@ -415,7 +415,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,13 +426,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACuEAAAAAAAAK4g==\""
+ "\"AAAAAAAAPQ4AAAAAAAA9Dw==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8505a5d2-2b4b-4f4f-8c8a-036c070f0493"
+ "454def41-c219-4733-8155-1b9c3649168b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,19 +441,19 @@
"11989"
],
"x-ms-correlation-request-id": [
- "34fa170e-a5b7-41c8-b1c8-63ab406bcb9a"
+ "06721aa9-94e6-4bad-891e-e0faccb293ab"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193404Z:34fa170e-a5b7-41c8-b1c8-63ab406bcb9a"
+ "WESTUS:20200721T164115Z:06721aa9-94e6-4bad-891e-e0faccb293ab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:03 GMT"
+ "Tue, 21 Jul 2020 16:41:14 GMT"
],
"Content-Length": [
- "585"
+ "586"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,17 +462,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5530b1a4-b129-4190-b001-f726c44147bb"
+ "3854a63d-e719-4580-8c21-4855644b795f"
],
"Accept-Language": [
"en-US"
@@ -481,7 +481,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,7 +495,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9c49fdbf-8d76-40d7-9133-cd97e0f89f29"
+ "bf3e8fe1-5cdf-49cf-87b7-6a9e88f77aed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +504,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "102ad126-57fa-4854-bac5-4985307385be"
+ "211f5f5e-f862-43b8-a3c0-eb036db845d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193405Z:102ad126-57fa-4854-bac5-4985307385be"
+ "WESTUS:20200721T164116Z:211f5f5e-f862-43b8-a3c0-eb036db845d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:05 GMT"
+ "Tue, 21 Jul 2020 16:41:16 GMT"
],
"Content-Length": [
"80"
@@ -529,13 +529,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps3525\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps7035\",\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps4780\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps9973\",\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f42f2f8c-5258-4f06-9ca0-9fe10fb1d736"
+ "9e70a1f4-275d-44dd-b68e-c9b99fef3976"
],
"If-Match": [
"*"
@@ -547,13 +547,13 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "201"
+ "202"
]
},
"ResponseHeaders": {
@@ -567,7 +567,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e7e61e3-e720-46bc-8114-bfcd54eed161"
+ "fc0f2209-414c-46b9-93d6-1059bcc23ceb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,16 +576,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "05bf4b43-e17d-4d69-9d75-851193a7fcee"
+ "77215f6b-aa91-42f0-bcc3-cb5797ceaf51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193402Z:05bf4b43-e17d-4d69-9d75-851193a7fcee"
+ "WESTUS:20200721T164112Z:77215f6b-aa91-42f0-bcc3-cb5797ceaf51"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:02 GMT"
+ "Tue, 21 Jul 2020 16:41:11 GMT"
],
"Expires": [
"-1"
@@ -595,13 +595,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Blocked\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "565b23c4-5a69-4ab0-9bd6-b1861b68799d"
+ "9043ad56-a036-4283-94b8-7990b247f0c9"
],
"If-Match": [
"*"
@@ -613,7 +613,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -633,7 +633,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "49955615-918c-4599-8e11-efcb1d50fb77"
+ "43855a33-f69e-4595-8bd1-63ea77a0198d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,16 +642,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "9b2b5ffd-6df3-48a9-abe6-a5a359bc0000"
+ "055bfaf7-5929-4509-a4f7-f4677b420505"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193403Z:9b2b5ffd-6df3-48a9-abe6-a5a359bc0000"
+ "WESTUS:20200721T164114Z:055bfaf7-5929-4509-a4f7-f4677b420505"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:03 GMT"
+ "Tue, 21 Jul 2020 16:41:13 GMT"
],
"Expires": [
"-1"
@@ -661,13 +661,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f04345a-a095-47f4-a75e-e4c1afda4ede"
+ "c23123d8-5f0b-40e5-b4df-671cab5e0c9d"
],
"If-Match": [
"*"
@@ -679,7 +679,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -699,7 +699,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "14f3e8db-3deb-46e6-b73d-adcd4d2bf6e0"
+ "a89a48df-bf88-4b27-af28-554030fe94b9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -708,16 +708,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "18d8c057-fabf-4616-8402-7692c3d03a12"
+ "e9af8e7b-0717-4372-9252-d90b36633da7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193404Z:18d8c057-fabf-4616-8402-7692c3d03a12"
+ "WESTUS:20200721T164115Z:e9af8e7b-0717-4372-9252-d90b36633da7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:03 GMT"
+ "Tue, 21 Jul 2020 16:41:14 GMT"
],
"Expires": [
"-1"
@@ -733,7 +733,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c491c645-1962-42a1-bf7e-1f247dfa2888"
+ "0261b3ba-5a53-44ee-a713-55b8f5734717"
],
"Accept-Language": [
"en-US"
@@ -742,7 +742,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,7 +756,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87cf0c62-3fb5-49a6-be8a-29934d1902f1"
+ "eeb8b5fc-2247-4d8c-90fc-3bab021763e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -765,19 +765,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "67dd62da-9d2f-46ba-a53b-2e61d6db0737"
+ "db525397-5bcb-43d7-b01e-f4fb46cc358f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193402Z:67dd62da-9d2f-46ba-a53b-2e61d6db0737"
+ "WESTUS:20200721T164113Z:db525397-5bcb-43d7-b01e-f4fb46cc358f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:02 GMT"
+ "Tue, 21 Jul 2020 16:41:12 GMT"
],
"Content-Length": [
- "701"
+ "702"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -786,17 +786,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps2414'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHMyNDE0JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps8008'&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHM4MDA4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93a0c78e-4c36-43fb-be49-25f75322b029"
+ "1a8d7b8f-7dc6-44d3-b952-bea19b97ba55"
],
"Accept-Language": [
"en-US"
@@ -805,7 +805,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -819,7 +819,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fa950c4a-4994-42cd-9e77-1340fbc9b9e7"
+ "f1ce5cb7-155d-4420-b389-f5fa7a777cf8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -828,19 +828,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "deb9d5ad-a2f3-4798-a6e3-178d5dbdba03"
+ "1debc8c9-4ab6-41fd-8f77-ea88d8363940"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193403Z:deb9d5ad-a2f3-4798-a6e3-178d5dbdba03"
+ "WESTUS:20200721T164113Z:1debc8c9-4ab6-41fd-8f77-ea88d8363940"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:02 GMT"
+ "Tue, 21 Jul 2020 16:41:12 GMT"
],
"Content-Length": [
- "701"
+ "702"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -849,17 +849,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps28'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczI4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps548'&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczU0OCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5cb378c7-446a-4789-833b-33b67fca1097"
+ "eb31522d-6c04-4441-a810-76287a0fb040"
],
"Accept-Language": [
"en-US"
@@ -868,7 +868,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -882,7 +882,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "723855dd-6009-40da-be2c-7fa374105200"
+ "0854d05e-4cfb-46af-85e8-b460ad515489"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -891,19 +891,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "e340a6bd-fb95-4f2f-8e8a-77b79430b57c"
+ "dc389fdc-f162-47f0-a035-481f507fd307"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193403Z:e340a6bd-fb95-4f2f-8e8a-77b79430b57c"
+ "WESTUS:20200721T164113Z:dc389fdc-f162-47f0-a035-481f507fd307"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:02 GMT"
+ "Tue, 21 Jul 2020 16:41:13 GMT"
],
"Content-Length": [
- "701"
+ "702"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -912,17 +912,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps28'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczI4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps548'&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczU0OCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5da6a0f5-ac27-41c0-b81b-d90a6ddd2e8e"
+ "10be4cf8-8715-462b-be5c-728b287aca64"
],
"Accept-Language": [
"en-US"
@@ -931,7 +931,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -945,7 +945,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f17b174e-e332-4e43-a1e2-e495b141ae1f"
+ "8c270360-36d3-4a55-9ecf-e295e4eba4cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -954,19 +954,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "825a35b1-7dff-4e34-844e-da13c65f625f"
+ "c7f188c4-d919-4abe-9785-c79728664c6c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193403Z:825a35b1-7dff-4e34-844e-da13c65f625f"
+ "WESTUS:20200721T164114Z:c7f188c4-d919-4abe-9785-c79728664c6c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:02 GMT"
+ "Tue, 21 Jul 2020 16:41:13 GMT"
],
"Content-Length": [
- "701"
+ "702"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -975,7 +975,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
@@ -985,7 +985,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb5743a-88d3-495b-8297-e75954a2c802"
+ "a3c2b997-1d53-4cbe-9564-8892efc545d7"
],
"Accept-Language": [
"en-US"
@@ -994,7 +994,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1008,7 +1008,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e7ab03e9-0a68-443f-b5c7-632d82144008"
+ "ec5662e8-6cd7-4fad-a9be-b16838396950"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1017,19 +1017,19 @@
"11990"
],
"x-ms-correlation-request-id": [
- "3954bb80-fa80-4a2b-ac04-698bee23b28e"
+ "c600ac41-28c7-4e94-baef-01d536446e17"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193404Z:3954bb80-fa80-4a2b-ac04-698bee23b28e"
+ "WESTUS:20200721T164114Z:c600ac41-28c7-4e94-baef-01d536446e17"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:03 GMT"
+ "Tue, 21 Jul 2020 16:41:13 GMT"
],
"Content-Length": [
- "702"
+ "703"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1038,17 +1038,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939/generateSsoUrl?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985/generateSsoUrl?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c7b83c6-84f7-4e6c-98b1-b4e1b8cfd5c2"
+ "2f114c2e-567c-4c96-af6e-6892cc0efbbd"
],
"Accept-Language": [
"en-US"
@@ -1057,7 +1057,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1071,7 +1071,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1d585c5-a13e-46f0-b766-ed69467e769a"
+ "8ec13eee-df8c-48e6-ab95-d57df3d6b259"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1080,19 +1080,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "745cbc20-2c63-4b7d-9da9-7c4fc4fcf6ff"
+ "19728d95-4dc6-4283-983a-2f0ca740f51d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193404Z:745cbc20-2c63-4b7d-9da9-7c4fc4fcf6ff"
+ "WESTUS:20200721T164115Z:19728d95-4dc6-4283-983a-2f0ca740f51d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:04 GMT"
+ "Tue, 21 Jul 2020 16:41:14 GMT"
],
"Content-Length": [
- "199"
+ "201"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1101,17 +1101,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps3939%26202004301939%26OqGYIUgnCcYCkg0PnxxcwSJpwwvPoBIvhgY2butq2DKDkIfgY0B7d05a%2ffhW2NLJ2vgrX1aeq0gYkw2tt%2bQFSA%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps7985%26202007211646%26LUck21EfZc7lpL%2bTxmRx7c%2bpptTTvlAHwuDX%2fiSOvUtxgWvMCeI2KzvJ8GGU1TvoZAGN3AgA15FIRcwcWN9exw%3d%3d\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939/token?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985/token?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-05-01T03:34:04.6644958Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-07-22T00:41:15.4424519Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f391bbfd-d0b1-415f-95a1-42bec67a5316"
+ "5e475690-e941-4f0c-a6d5-fdb3a173c82b"
],
"Accept-Language": [
"en-US"
@@ -1120,7 +1120,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1140,7 +1140,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "381656d3-87cd-4cc5-ac2a-c7ef2e5b3163"
+ "8d4eebcf-d517-4e8c-a286-ee14ffffb1ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1149,16 +1149,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "89970ec9-1a70-4ad0-90bb-f911abaa6817"
+ "26b26fb1-86d7-4214-a497-409d5fd9c485"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193404Z:89970ec9-1a70-4ad0-90bb-f911abaa6817"
+ "WESTUS:20200721T164115Z:26b26fb1-86d7-4214-a497-409d5fd9c485"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:04 GMT"
+ "Tue, 21 Jul 2020 16:41:14 GMT"
],
"Content-Length": [
"120"
@@ -1170,17 +1170,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps3939&202005010334&jtPzd93sIrAXNSjV5nk/y3SwXLPD8crCZHwt2rvTYVAaOIFYCqYEB/mo1Mz6+Si8sbIcJr4XNgKucTB2QjdFTg==\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps7985&202007220041&SQOddY2KrXfhicU4yk3JZlhPmSFSU8wtfJ4YV49i+lSHS4Jl0EYR1AotVcFN87XwbTRp4cCtHy9++3IyV+XCRA==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?deleteSubscriptions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?deleteSubscriptions=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25d96679-2255-4a7e-b717-c62a28813790"
+ "d1022ca7-5184-43f1-9980-18aca3ee4e9a"
],
"If-Match": [
"*"
@@ -1192,7 +1192,7 @@
"FxVersion/4.6.27817.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
]
},
"ResponseHeaders": {
@@ -1206,7 +1206,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de402339-91ac-4d63-870e-770cc8221e6f"
+ "64c9a8f8-5d65-4182-b891-d00ee746b8c4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1215,16 +1215,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "1b70e385-cfef-4811-b81d-831ad5214a7b"
+ "57bed207-6575-4aa3-bb5e-2fa334d0c26d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T193405Z:1b70e385-cfef-4811-b81d-831ad5214a7b"
+ "WESTUS:20200721T164116Z:57bed207-6575-4aa3-bb5e-2fa334d0c26d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:34:05 GMT"
+ "Tue, 21 Jul 2020 16:41:15 GMT"
],
"Expires": [
"-1"
@@ -1239,15 +1239,15 @@
],
"Names": {
"": [
- "ps3939",
- "ps1405",
- "ps8226",
- "ps9902",
- "ps4097",
- "ps2414",
- "ps28",
- "ps7035",
- "ps3525"
+ "ps7985",
+ "ps4068",
+ "ps830",
+ "ps348",
+ "ps6330",
+ "ps8008",
+ "ps548",
+ "ps9973",
+ "ps4780"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
index 5724dd42de50..f44f39144325 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
index cd11ff3d6390..1ce9df0d69a2 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
@@ -503,7 +503,49 @@ private static void ConfigureMappings()
.ForMember(dest => dest.ServiceFabricCluster, opt => opt.MapFrom(src => src.Properties.ServiceFabricCluster))
.AfterMap((src, dest) =>
dest.Properties = Utils.ToBackendProperties(src.Tls));
-
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
+ .ForMember(dest => dest.GatewayId, opt => opt.MapFrom(src => src.Name))
+ .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description))
+ .ForMember(dest => dest.LocationData, opt => opt.MapFrom(src => src.LocationData));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
+ .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.GatewayId))
+ .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description))
+ .ForMember(dest => dest.LocationData, opt => opt.MapFrom(src => src.LocationData));
+
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.Name))
+ .ForMember(dest => dest.City, opt => opt.MapFrom(src => src.City))
+ .ForMember(dest => dest.District, opt => opt.MapFrom(src => src.District))
+ .ForMember(dest => dest.CountryOrRegion, opt => opt.MapFrom(src => src.CountryOrRegion));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.Name))
+ .ForMember(dest => dest.City, opt => opt.MapFrom(src => src.City))
+ .ForMember(dest => dest.District, opt => opt.MapFrom(src => src.District))
+ .ForMember(dest => dest.CountryOrRegion, opt => opt.MapFrom(src => src.CountryOrRegion));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.PrimaryKey, opt => opt.MapFrom(src => src.Primary))
+ .ForMember(dest => dest.SecondaryKey, opt => opt.MapFrom(src => src.Secondary));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.GatewayHostnameConfigurationId, opt => opt.MapFrom(src => src.Name))
+ .ForMember(dest => dest.GatewayId, opt => opt.MapFrom(src => new PsApiManagementGatewayHostnameConfiguration(src.Id).GatewayId))
+ .ForMember(dest => dest.Hostname, opt => opt.MapFrom(src => src.Hostname))
+ .ForMember(dest => dest.CertificateResourceId, opt => opt.MapFrom(src => src.CertificateId))
+ .ForMember(dest => dest.NegotiateClientCertificate, opt => opt.MapFrom(src => src.NegotiateClientCertificate));
+
cfg
.CreateMap()
.ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
@@ -3959,5 +4001,182 @@ static PsApiManagementRepresentation[] ToRepresentationContract(IList(locationData)
+ };
+
+ var gatewayContract = Client.Gateway.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, gatewayId, gatewayCreateParameters);
+
+ var gateway = Mapper.Map(gatewayContract);
+
+ return gateway;
+ }
+
+ public IList GatewaysList(PsApiManagementContext context)
+ {
+ var results = ListPagedAndMap(
+ () => Client.Gateway.ListByService(context.ResourceGroupName, context.ServiceName, null),
+ nextLink => Client.Gateway.ListByServiceNext(nextLink));
+
+ return results;
+ }
+
+ public PsApiManagementGateway GatewayById(string resourceGroupName, string serviceName, string gatewayId)
+ {
+ var response = Client.Gateway.Get(resourceGroupName, serviceName, gatewayId);
+ var gateway = Mapper.Map(response);
+
+ return gateway;
+ }
+
+ public void GatewayRemove(string resourceGroupName, string serviceName, string gatewayId)
+ {
+ Client.Gateway.Delete(resourceGroupName, serviceName, gatewayId, "*");
+ }
+
+ public void GatewaySet(
+ string resourceGroupName,
+ string serviceName,
+ string gatewayId,
+ string description,
+ PsApiManagementResourceLocation locationData,
+ PsApiManagementGateway gatewayObject)
+ {
+ GatewayContract gatewayUpdateParameters;
+
+ if (gatewayObject == null)
+ {
+ gatewayUpdateParameters = new GatewayContract();
+ }
+ else
+ {
+ gatewayUpdateParameters = Mapper.Map(gatewayObject);
+ }
+
+ if (!string.IsNullOrWhiteSpace(description))
+ {
+ gatewayUpdateParameters.Description = description;
+ }
+
+ if (locationData != null)
+ {
+ gatewayUpdateParameters.LocationData = Mapper.Map(locationData);
+ }
+
+ Client.Gateway.Update(
+ resourceGroupName,
+ serviceName,
+ gatewayId,
+ gatewayUpdateParameters,
+ "*");
+ }
+
+ public void ApiAddToGateway(PsApiManagementContext context, string gatewayId, string apiId, PsApiManagementGatewayApiProvisioningState? provisioningState)
+ {
+ AssociationContract association = null;
+ if (provisioningState != null)
+ {
+ association = new AssociationContract();
+ association.ProvisioningState = Mapper.Map(provisioningState);
+ }
+
+ Client.GatewayApi.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, gatewayId, apiId, association);
+ }
+
+ public IList ApiByGatewayId(PsApiManagementContext context, string gatewayId)
+ {
+ var results = ListPagedAndMap(
+ () => Client.GatewayApi.ListByService(context.ResourceGroupName, context.ServiceName, gatewayId),
+ nextLink => Client.GatewayApi.ListByServiceNext(nextLink));
+
+ return results;
+ }
+
+ public void ApiRemoveFromGateway(PsApiManagementContext context, string gatewayId, string apiId)
+ {
+ Client.GatewayApi.Delete(context.ResourceGroupName, context.ServiceName, gatewayId, apiId);
+ }
+
+ public PsApiManagementGatewayKey GatewayKeyById(
+ string resourceGroupName,
+ string serviceName,
+ string gatewayId)
+ {
+ var response = Client.Gateway.ListKeys(
+ resourceGroupName,
+ serviceName,
+ gatewayId);
+ var keys = Mapper.Map(response);
+
+ return keys;
+ }
+
+ public IList GatewayHostnameConfigurationByGateway(
+ string resourceGroupName,
+ string serviceName,
+ string gatewayId)
+ {
+ var results = ListPagedAndMap(
+ () => Client.GatewayHostnameConfiguration.ListByService(resourceGroupName, serviceName, gatewayId),
+ nextLink => Client.GatewayHostnameConfiguration.ListByServiceNext(nextLink));
+
+ return results;
+ }
+
+ public PsApiManagementGatewayHostnameConfiguration GatewayHostnameConfigurationById(
+ string resourceGroupName,
+ string serviceName,
+ string gatewayId,
+ string hostnameConfigurationId)
+ {
+ var response = Client.GatewayHostnameConfiguration.Get(
+ resourceGroupName,
+ serviceName,
+ gatewayId,
+ hostnameConfigurationId);
+ var hostnameConfig = Mapper.Map(response);
+
+ return hostnameConfig;
+ }
+
+ public PsApiManagementGatewayHostnameConfiguration GatewayHostnameConfigurationCreate(
+ PsApiManagementContext context,
+ string gatewayId,
+ string hostnameConfigurationId,
+ string hostname,
+ string certificateId,
+ bool? negotiateClientCertificate
+ )
+ {
+ var hostnameCreateParameters = new GatewayHostnameConfigurationContract()
+ {
+ Hostname = hostname,
+ CertificateId = certificateId,
+ NegotiateClientCertificate = negotiateClientCertificate
+ };
+
+ var hostnameContract = Client.GatewayHostnameConfiguration.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, gatewayId, hostnameConfigurationId, hostnameCreateParameters);
+
+ var config = Mapper.Map(hostnameContract);
+
+ return config;
+ }
+
+ public void GatewayHostnameConfigurationRemove(string resourceGroupName, string serviceName, string gatewayId, string hostnameConfigurationId)
+ {
+ Client.GatewayHostnameConfiguration.Delete(resourceGroupName, serviceName, gatewayId, hostnameConfigurationId);
+ }
+ #endregion
+
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToGateway.cs
new file mode 100644
index 000000000000..5cf85a35b0d5
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToGateway.cs
@@ -0,0 +1,69 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using Microsoft.Azure.Management.ApiManagement.Models;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementApiToGateway", SupportsShouldProcess = true)]
+ [OutputType(typeof(bool))]
+ public class AddAzureApiManagementApiToGateway : AzureApiManagementCmdletBase
+ {
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing API. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String ApiId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Provisioning State (Created). This parameter is optional.")]
+ public PsApiManagementGatewayApiProvisioningState? ProvisioningState { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ Client.ApiAddToGateway(Context, GatewayId, ApiId, ProvisioningState);
+
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs
index 1d31e9181830..5e6fccfe4e1e 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs
@@ -24,6 +24,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
[OutputType(typeof(PsApiManagementApi))]
public class GetAzureApiManagementApi : AzureApiManagementCmdletBase
{
+ private const string FindByGatewayId = "GetByGatewayId";
private const string FindByProductId = "GetByProductId";
private const string FindByName = "GetByName";
private const string FindById = "GetByApiId";
@@ -65,6 +66,13 @@ public class GetAzureApiManagementApi : AzureApiManagementCmdletBase
HelpMessage = "If specified will try to get all Product APIs. This parameter is optional.")]
public String ProductId { get; set; }
+ [Parameter(
+ ParameterSetName = FindByGatewayId,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "If specified will try to get all Gateway APIs.")]
+ public String GatewayId { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
if (ParameterSetName.Equals(AllApis))
@@ -88,6 +96,10 @@ public override void ExecuteApiManagementCmdlet()
{
WriteObject(Client.ApiByProductId(Context, ProductId), true);
}
+ else if (ParameterSetName.Equals(FindByGatewayId))
+ {
+ WriteObject(Client.ApiByGatewayId(Context, GatewayId), true);
+ }
}
}
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGateway.cs
new file mode 100644
index 000000000000..bf82f00a34b7
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGateway.cs
@@ -0,0 +1,60 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using System;
+ using System.Management.Automation;
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", DefaultParameterSetName = GetAll)]
+ [OutputType(typeof(PsApiManagementGateway))]
+ public class GetAzureApiManagementGateway : AzureApiManagementCmdletBase
+ {
+ private const string GetAll = "GetAllGateways";
+ private const string GetById = "GetByGatewayId";
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ParameterSetName = GetById,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of a gateway. If specified will try to find gateway by the identifier.")]
+ public String GatewayId { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ if (ParameterSetName.Equals(GetAll))
+ {
+ var gateways = Client.GatewaysList(Context);
+ WriteObject(gateways, true);
+ }
+ else if (ParameterSetName.Equals(GetById))
+ {
+ var gateway = Client.GatewayById(Context.ResourceGroupName, Context.ServiceName, GatewayId);
+ WriteObject(gateway);
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayHostnameConfiguration.cs
new file mode 100644
index 000000000000..a9ab7554b4c6
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayHostnameConfiguration.cs
@@ -0,0 +1,81 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayHostnameConfiguration", DefaultParameterSetName = GetByGatewayId)]
+ [OutputType(typeof(PsApiManagementGatewayHostnameConfiguration), ParameterSetName = new[] { GetByGatewayId, GetByGatewayHostnameId })]
+ public class GetAzureApiManagementGatewayHostnameConfiguration : AzureApiManagementCmdletBase
+ {
+ private const string GetByGatewayId = "GetByGatewayId";
+ private const string GetByGatewayHostnameId = "GetByGatewayHostnameId";
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ParameterSetName = GetByGatewayId,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Gateway identifier. This parameter is required.")]
+ [Parameter(
+ ParameterSetName = GetByGatewayHostnameId,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Gateway identifier. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ParameterSetName = GetByGatewayHostnameId,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Hostname Configuration identifier.")]
+ public String GatewayHostnameConfigurationId { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ if (ParameterSetName.Equals(GetByGatewayId))
+ {
+ var gateways = Client.GatewayHostnameConfigurationByGateway(
+ Context.ResourceGroupName,
+ Context.ServiceName,
+ GatewayId);
+ WriteObject(gateways, true);
+ }
+ else if (ParameterSetName.Equals(GetByGatewayHostnameId))
+ {
+ var gateway = Client.GatewayHostnameConfigurationById(
+ Context.ResourceGroupName,
+ Context.ServiceName,
+ GatewayId,
+ GatewayHostnameConfigurationId);
+ WriteObject(gateway);
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayKey.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayKey.cs
new file mode 100644
index 000000000000..57331cbaac22
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayKey.cs
@@ -0,0 +1,60 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayKey", DefaultParameterSetName = GetByGatewayId)]
+ [OutputType(typeof(PsApiManagementGatewayKey), ParameterSetName = new[] { GetByGatewayId })]
+ public class GetAzureApiManagementGatewayKey : AzureApiManagementCmdletBase
+ {
+ private const string GetByGatewayId = "GetByGatewayId";
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ParameterSetName = GetByGatewayId,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Gateway identifier. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ if (ParameterSetName.Equals(GetByGatewayId))
+ {
+ var gateway = Client.GatewayKeyById(
+ Context.ResourceGroupName,
+ Context.ServiceName,
+ GatewayId);
+ WriteObject(gateway);
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGateway.cs
new file mode 100644
index 000000000000..98c01371497e
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGateway.cs
@@ -0,0 +1,61 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", SupportsShouldProcess = true)]
+ [OutputType(typeof(PsApiManagementGateway))]
+ public class NewAzureApiManagementGateway : AzureApiManagementCmdletBase
+ {
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Identifier of new gateway. This parameter is optional. If not specified will be generated.")]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Gateway description. This parameter is optional.")]
+ public String Description { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Gateway location. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementResourceLocation LocationData { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ string gatewayId = GatewayId ?? Guid.NewGuid().ToString("N");
+
+ var gateway = Client.GatewayCreate(Context, gatewayId, Description, LocationData);
+
+ WriteObject(gateway);
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGatewayHostnameConfiguration.cs
new file mode 100644
index 000000000000..908d289a8a88
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGatewayHostnameConfiguration.cs
@@ -0,0 +1,75 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayHostnameConfiguration", SupportsShouldProcess = true)]
+ [OutputType(typeof(PsApiManagementGatewayHostnameConfiguration))]
+ public class NewAzureApiManagementGatewayHostnameConfiguration : AzureApiManagementCmdletBase
+ {
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Identifier of new gateway hostname confiuration. This parameter is optional. If not specified will be generated.")]
+ public String GatewayHostnameConfigurationId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Hostname. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String Hostname { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "A resource identifier for the existing certificate id. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String CertificateResourceId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Flag to enforce NegotiateClientCertificate. This parameter is optional.")]
+ public SwitchParameter NegotiateClientCertificate { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ string hostnameId = GatewayHostnameConfigurationId ?? Guid.NewGuid().ToString("N");
+
+ var config = Client.GatewayHostnameConfigurationCreate(Context, GatewayId, hostnameId, Hostname, CertificateResourceId, NegotiateClientCertificate.IsPresent);
+
+ WriteObject(config);
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementResourceLocationObject.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementResourceLocationObject.cs
new file mode 100644
index 000000000000..7fb467421e0e
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementResourceLocationObject.cs
@@ -0,0 +1,79 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.Collections;
+using System.Linq;
+
+namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using System.Management.Automation;
+
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementResourceLocationObject")]
+ [OutputType(typeof(PsApiManagementResourceLocation))]
+ public class NewAzureApiManagementResourceLocationObject : AzureApiManagementCmdletBase
+ {
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = true,
+ HelpMessage = "Location Name. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = false,
+ HelpMessage = "Location City. This parameter is optional.")]
+ public string City { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = false,
+ HelpMessage = "Location District. This parameter is optional.")]
+ public string District { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = false,
+ HelpMessage = "Location Country or Region. This parameter is optional.")]
+ public string CountryOrRegion { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ var location = new PsApiManagementResourceLocation();
+
+ if (Name != null)
+ {
+ location.Name = Name;
+ }
+
+ if (District != null)
+ {
+ location.District = District;
+ }
+
+ if (City != null)
+ {
+ location.City = City;
+ }
+
+ if (CountryOrRegion != null)
+ {
+ location.CountryOrRegion = CountryOrRegion;
+ }
+
+ WriteObject(location);
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromGateway.cs
new file mode 100644
index 000000000000..6e6dc50d0974
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromGateway.cs
@@ -0,0 +1,63 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementApiFromGateway", SupportsShouldProcess = true)]
+ [OutputType(typeof(bool))]
+ public class RemoveAzureApiManagementApiFromGateway : AzureApiManagementCmdletBase
+ {
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing Gateway to remove API from. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing APIs to remove from the Gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String ApiId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ Client.ApiRemoveFromGateway(Context, GatewayId, ApiId);
+
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs
index 1196e4429ec9..3d7b7871c37c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs
@@ -94,8 +94,8 @@ public override void ExecuteApiManagementCmdlet()
cacheId = CacheId;
}
- var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveDescription, CacheId);
- var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveWarning, CacheId);
+ var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveDescription, cacheId);
+ var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveWarning, cacheId);
// Do nothing if force is not specified and user cancelled the operation
if (!ShouldProcess(
@@ -106,7 +106,7 @@ public override void ExecuteApiManagementCmdlet()
return;
}
- Client.CacheRemove(resourceGroupName, serviceName, CacheId);
+ Client.CacheRemove(resourceGroupName, serviceName, cacheId);
if (PassThru.IsPresent)
{
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGateway.cs
new file mode 100644
index 000000000000..9f467583bd40
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGateway.cs
@@ -0,0 +1,116 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
+ using System;
+ using System.Globalization;
+ using System.Management.Automation;
+
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", SupportsShouldProcess = true, DefaultParameterSetName = ContextParameterSet)]
+ [OutputType(typeof(bool), ParameterSetName = new[] { ContextParameterSet, ByInputObjectParameterSet, ByResourceIdParameterSet })]
+ public class RemoveAzureApiManagementGateway : AzureApiManagementCmdletBase
+ {
+ const string ContextParameterSet = "ContextParameterSetName";
+ const string ByInputObjectParameterSet = "ByInputObjectParameterSet";
+ const string ByResourceIdParameterSet = "ByResourceIdParameterSet";
+
+ [Parameter(
+ ParameterSetName = ContextParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ParameterSetName = ContextParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByInputObjectParameterSet,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementGateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementGateway InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByResourceIdParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Arm ResourceId of the Gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String ResourceId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ string resourceGroupName;
+ string serviceName;
+ string gatewayId;
+
+ if (ParameterSetName.Equals(ByInputObjectParameterSet))
+ {
+ resourceGroupName = InputObject.ResourceGroupName;
+ serviceName = InputObject.ServiceName;
+ gatewayId = InputObject.GatewayId;
+ }
+ else if (ParameterSetName.Equals(ByResourceIdParameterSet))
+ {
+ var gateway = new PsApiManagementGateway(ResourceId);
+ resourceGroupName = gateway.ResourceGroupName;
+ serviceName = gateway.ServiceName;
+ gatewayId = gateway.GatewayId;
+ }
+ else
+ {
+ resourceGroupName = Context.ResourceGroupName;
+ serviceName = Context.ServiceName;
+ gatewayId = GatewayId;
+ }
+
+ var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.GatewayRemoveDescription, gatewayId);
+ var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.GatewayRemoveWarning, gatewayId);
+
+ // Do nothing if force is not specified and user cancelled the operation
+ if (!ShouldProcess(
+ actionDescription,
+ actionWarning,
+ Resources.ShouldProcessCaption))
+ {
+ return;
+ }
+
+ Client.GatewayRemove(resourceGroupName, serviceName, gatewayId);
+
+ if (PassThru.IsPresent)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGatewayHostnameConfiguration.cs
new file mode 100644
index 000000000000..2c97a0d49699
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGatewayHostnameConfiguration.cs
@@ -0,0 +1,129 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
+ using System;
+ using System.Globalization;
+ using System.Management.Automation;
+
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayHostnameConfiguration", SupportsShouldProcess = true, DefaultParameterSetName = ContextParameterSet)]
+ [OutputType(typeof(bool), ParameterSetName = new[] { ContextParameterSet, ByInputObjectParameterSet, ByResourceIdParameterSet })]
+ public class RemoveAzureApiManagementGatewayHostnameConfiguration : AzureApiManagementCmdletBase
+ {
+ const string ContextParameterSet = "ContextParameterSetName";
+ const string ByInputObjectParameterSet = "ByInputObjectParameterSet";
+ const string ByResourceIdParameterSet = "ByResourceIdParameterSet";
+
+ [Parameter(
+ ParameterSetName = ContextParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ParameterSetName = ContextParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ParameterSetName = ContextParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing gateway hostname configuration. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayHostnameConfigurationId { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByInputObjectParameterSet,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementGatewayHostnameConfiguration. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementGatewayHostnameConfiguration InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByResourceIdParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Arm ResourceId of the GatewayHostnameConfiguration. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String ResourceId { get; set; }
+
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ string resourceGroupName;
+ string serviceName;
+ string gatewayId;
+ string gatewayHostnameConfigurationId;
+
+ if (ParameterSetName.Equals(ByInputObjectParameterSet))
+ {
+ resourceGroupName = InputObject.ResourceGroupName;
+ serviceName = InputObject.ServiceName;
+ gatewayId = InputObject.GatewayId;
+ gatewayHostnameConfigurationId = InputObject.GatewayHostnameConfigurationId;
+ }
+ else if (ParameterSetName.Equals(ByResourceIdParameterSet))
+ {
+ var gateway = new PsApiManagementGatewayHostnameConfiguration(ResourceId);
+ resourceGroupName = gateway.ResourceGroupName;
+ serviceName = gateway.ServiceName;
+ gatewayId = gateway.GatewayId;
+ gatewayHostnameConfigurationId = gateway.GatewayHostnameConfigurationId;
+ }
+ else
+ {
+ resourceGroupName = Context.ResourceGroupName;
+ serviceName = Context.ServiceName;
+ gatewayId = GatewayId;
+ gatewayHostnameConfigurationId = GatewayHostnameConfigurationId;
+ }
+
+ var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.GatewayHostnameConfigurationRemoveDescription, gatewayId, gatewayHostnameConfigurationId);
+ var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.GatewayHostnameConfigurationRemoveWarning, gatewayId, gatewayHostnameConfigurationId);
+
+ // Do nothing if force is not specified and user cancelled the operation
+ if (!ShouldProcess(
+ actionDescription,
+ actionWarning,
+ Resources.ShouldProcessCaption))
+ {
+ return;
+ }
+
+ Client.GatewayHostnameConfigurationRemove(resourceGroupName, serviceName, gatewayId, gatewayHostnameConfigurationId);
+
+ if (PassThru.IsPresent)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementGateway.cs
new file mode 100644
index 000000000000..d643fca33337
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementGateway.cs
@@ -0,0 +1,122 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", SupportsShouldProcess = true, DefaultParameterSetName = ExpandedParameterSet)]
+ [OutputType(typeof(PsApiManagementGateway), ParameterSetName = new[] { ExpandedParameterSet, ByInputObjectParameterSet, ByResourceIdParameterSet })]
+ public class UpdateAzureApiManagementGateway : AzureApiManagementCmdletBase
+ {
+ protected const string ExpandedParameterSet = "ExpandedParameter";
+ protected const string ByInputObjectParameterSet = "ByInputObject";
+ protected const string ByResourceIdParameterSet = "ByResourceId";
+
+ [Parameter(
+ ParameterSetName = ExpandedParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementContext Context { get; set; }
+
+ [Parameter(
+ ParameterSetName = ExpandedParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Identifier of existing gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String GatewayId { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByInputObjectParameterSet,
+ ValueFromPipeline = true,
+ Mandatory = true,
+ HelpMessage = "Instance of PsApiManagementGateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementGateway InputObject { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByResourceIdParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Arm ResourceId of the Gateway. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String ResourceId { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Gateway description. This parameter is optional.")]
+ public String Description { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Gateway location. This parameter is optional.")]
+ public PsApiManagementResourceLocation LocationData { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "If specified then instance of " +
+ "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway type " +
+ "representing the modified gateway.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ string resourceGroupName;
+ string serviceName;
+ string gatewayId;
+
+ if (ParameterSetName.Equals(ByInputObjectParameterSet))
+ {
+ resourceGroupName = InputObject.ResourceGroupName;
+ serviceName = InputObject.ServiceName;
+ gatewayId = InputObject.GatewayId;
+ }
+ else if (ParameterSetName.Equals(ExpandedParameterSet))
+ {
+ resourceGroupName = Context.ResourceGroupName;
+ serviceName = Context.ServiceName;
+ gatewayId = GatewayId;
+ }
+ else
+ {
+ var gateway = new PsApiManagementGateway(ResourceId);
+ resourceGroupName = gateway.ResourceGroupName;
+ serviceName = gateway.ServiceName;
+ gatewayId = gateway.GatewayId;
+ }
+
+
+ if (ShouldProcess(GatewayId, Resources.SetGateway))
+ {
+ Client.GatewaySet(resourceGroupName, serviceName, gatewayId, Description, LocationData, InputObject);
+
+ if (PassThru)
+ {
+ var @gateway = Client.GatewayById(resourceGroupName, serviceName, gatewayId);
+ WriteObject(@gateway);
+ }
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGateway.cs
new file mode 100644
index 000000000000..88416cbb50b0
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGateway.cs
@@ -0,0 +1,52 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Models
+{
+ using System;
+ using System.Collections.Generic;
+ using System.Text.RegularExpressions;
+
+ public class PsApiManagementGateway : PsApiManagementArmResource
+ {
+ static readonly Regex GatewayIdRegex = new Regex(@"(.*?)/providers/microsoft.apimanagement/service/(?[^/]+)/gateways/(?[^/]+)", RegexOptions.IgnoreCase);
+
+ public string GatewayId { get; set; }
+
+ public string Description { get; set; }
+
+ public PsApiManagementResourceLocation LocationData { get; set; }
+
+
+ public PsApiManagementGateway() { }
+
+ public PsApiManagementGateway(string armResourceId)
+ {
+ this.Id = armResourceId;
+
+ var match = GatewayIdRegex.Match(Id);
+ if (match.Success)
+ {
+ var gatewayIdRegexResult = match.Groups["gatewayId"];
+ if (gatewayIdRegexResult != null && gatewayIdRegexResult.Success)
+ {
+ this.GatewayId = gatewayIdRegexResult.Value;
+ return;
+ }
+ }
+
+ throw new ArgumentException($"ResourceId {armResourceId} is not a valid Gateway Id.");
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayApiProvisioningState.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayApiProvisioningState.cs
new file mode 100644
index 000000000000..0eeb0a599c39
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayApiProvisioningState.cs
@@ -0,0 +1,21 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Models
+{
+ public enum PsApiManagementGatewayApiProvisioningState
+ {
+ Created = 0
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayHostnameConfiguration.cs
new file mode 100644
index 000000000000..49f93157a610
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayHostnameConfiguration.cs
@@ -0,0 +1,57 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Models
+{
+ using System;
+ using System.Text.RegularExpressions;
+
+ public class PsApiManagementGatewayHostnameConfiguration : PsApiManagementArmResource
+ {
+ static readonly Regex GatewayHostnameConfigurationIdRegex = new Regex(@"(.*?)/providers/microsoft.apimanagement/service/(?[^/]+)/gateways/(?[^/]+)/hostnameConfigurations/(?[^/]+)", RegexOptions.IgnoreCase);
+
+ public string Hostname { get; set; }
+
+ public string CertificateResourceId { get; set; }
+
+ public bool? NegotiateClientCertificate { get; set; }
+
+ public string GatewayId { get; set; }
+
+ public string GatewayHostnameConfigurationId { get; set; }
+
+ public PsApiManagementGatewayHostnameConfiguration() { }
+
+ public PsApiManagementGatewayHostnameConfiguration(string armResourceId)
+ {
+ this.Id = armResourceId;
+
+ var match = GatewayHostnameConfigurationIdRegex.Match(Id);
+ if (match.Success)
+ {
+ var gatewayIdRegexResult = match.Groups["gatewayId"];
+ var hcIdRegexResult = match.Groups["hcId"];
+ if (gatewayIdRegexResult != null && gatewayIdRegexResult.Success && hcIdRegexResult != null && hcIdRegexResult.Success)
+ {
+ this.GatewayId = gatewayIdRegexResult.Value;
+ this.GatewayHostnameConfigurationId = hcIdRegexResult.Value;
+ return;
+ }
+ }
+
+ throw new ArgumentException($"ResourceId {armResourceId} is not a valid GatewayHostnameConfiguration Id.");
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayKey.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayKey.cs
new file mode 100644
index 000000000000..405fd5c1baa8
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayKey.cs
@@ -0,0 +1,28 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Models
+{
+
+ public class PsApiManagementGatewayKey
+ {
+ public string PrimaryKey { get; set; }
+
+ public string SecondaryKey { get; set; }
+
+
+ public PsApiManagementGatewayKey() { }
+
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementResourceLocation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementResourceLocation.cs
new file mode 100644
index 000000000000..6eedb71f60a7
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementResourceLocation.cs
@@ -0,0 +1,29 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.ApiManagement.ServiceManagement.Models
+{
+ using System.Management.Automation;
+
+ public class PsApiManagementResourceLocation
+ {
+ public string Name { get; set; }
+
+ public string City { get; set; }
+
+ public string District { get; set; }
+
+ public string CountryOrRegion { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs
index e791edccad6b..03f4796b2cb2 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs
@@ -348,6 +348,42 @@ internal static string DiagnosticRemoveWarning {
}
}
+ ///
+ /// Looks up a localized string similar to Removing Gateway Hostname Configuration "{0}" for Gateway "{1}"..
+ ///
+ internal static string GatewayHostnameConfigurationRemoveDescription {
+ get {
+ return ResourceManager.GetString("GatewayHostnameConfigurationRemoveDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to remove Gateway Hostname Configuration "{0}" for Gateway "{1}"?.
+ ///
+ internal static string GatewayHostnameConfigurationRemoveWarning {
+ get {
+ return ResourceManager.GetString("GatewayHostnameConfigurationRemoveWarning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Removing Gateway "{0}"..
+ ///
+ internal static string GatewayRemoveDescription {
+ get {
+ return ResourceManager.GetString("GatewayRemoveDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to remove Gateway "{0}"?.
+ ///
+ internal static string GatewayRemoveWarning {
+ get {
+ return ResourceManager.GetString("GatewayRemoveWarning", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Removing Group "{0}"..
///
@@ -600,6 +636,15 @@ internal static string SetDiagnostics {
}
}
+ ///
+ /// Looks up a localized string similar to Set Gateway.
+ ///
+ internal static string SetGateway {
+ get {
+ return ResourceManager.GetString("SetGateway", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Set Group.
///
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx
index 3f0830eaac64..8ee5f8026411 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx
@@ -252,6 +252,22 @@
Are you sure you want to remove Group "{0}"?
Process workflow
+
+ Removing Gateway "{0}".
+ Process workflow
+
+
+ Are you sure you want to remove Gateway "{0}"?
+ Process workflow
+
+
+ Removing Gateway Hostname Configuration "{0}" for Gateway "{1}".
+ Process workflow
+
+
+ Are you sure you want to remove Gateway Hostname Configuration "{0}" for Gateway "{1}"?
+ Process workflow
+
Removing Identity Provider configuration for "{0}".
Process workflow
@@ -358,6 +374,10 @@
Set Group
Process workflow
+
+ Set Gateway
+ Process workflow
+
Set Logger
Process workflow
diff --git a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
index 600fcb69d833..867d62577ddd 100644
--- a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
+++ b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement/ApiManagement.csproj b/src/ApiManagement/ApiManagement/ApiManagement.csproj
index 55d01debcdc8..c65731dbcf20 100644
--- a/src/ApiManagement/ApiManagement/ApiManagement.csproj
+++ b/src/ApiManagement/ApiManagement/ApiManagement.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
index 00f01f4c3266..e0032a7c0eb0 100644
--- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
+++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
@@ -78,7 +78,8 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll',
FunctionsToExport = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
-CmdletsToExport = 'Add-AzApiManagementApiToProduct',
+CmdletsToExport = 'Add-AzApiManagementApiToGateway',
+ 'Add-AzApiManagementApiToProduct',
'Add-AzApiManagementProductToGroup', 'Add-AzApiManagementRegion',
'Add-AzApiManagementUserToGroup', 'Backup-AzApiManagement',
'Export-AzApiManagementApi', 'Get-AzApiManagement',
@@ -88,7 +89,9 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct',
'Get-AzApiManagementAuthorizationServer',
'Get-AzApiManagementAuthorizationServerClientSecret',
'Get-AzApiManagementBackend', 'Get-AzApiManagementCache',
- 'Get-AzApiManagementCertificate', 'Get-AzApiManagementDiagnostic',
+ 'Get-AzApiManagementCertificate', 'Get-AzApiManagementDiagnostic',
+ 'Get-AzApiManagementGateway', 'Get-AzApiManagementGatewayHostnameConfiguration',
+ 'Get-AzApiManagementGatewayKey',
'Get-AzApiManagementGroup', 'Get-AzApiManagementIdentityProvider',
'Get-AzApiManagementIdentityProviderClientSecret',
'Get-AzApiManagementLogger', 'Get-AzApiManagementNetworkStatus',
@@ -116,19 +119,25 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct',
'New-AzApiManagementCache', 'New-AzApiManagementCertificate',
'New-AzApiManagementContext',
'New-AzApiManagementCustomHostnameConfiguration',
- 'New-AzApiManagementDiagnostic', 'New-AzApiManagementGroup',
+ 'New-AzApiManagementDiagnostic',
+ 'New-AzApiManagementGateway',
+ 'New-AzApiManagementGatewayHostnameConfiguration',
+ 'New-AzApiManagementGroup',
'New-AzApiManagementHttpMessageDiagnostic',
'New-AzApiManagementIdentityProvider', 'New-AzApiManagementLogger',
'New-AzApiManagementOpenIdConnectProvider',
'New-AzApiManagementOperation',
'New-AzApiManagementPipelineDiagnosticSetting',
- 'New-AzApiManagementProduct', 'New-AzApiManagementNamedValue',
+ 'New-AzApiManagementProduct',
+ 'New-AzApiManagementResourceLocationObject',
+ 'New-AzApiManagementNamedValue',
'New-AzApiManagementRegion', 'New-AzApiManagementSamplingSetting',
'New-AzApiManagementSslSetting', 'New-AzApiManagementSubscription',
'New-AzApiManagementSystemCertificate', 'New-AzApiManagementUser',
'New-AzApiManagementUserToken', 'New-AzApiManagementVirtualNetwork',
'Publish-AzApiManagementTenantGitConfiguration',
'Remove-AzApiManagement', 'Remove-AzApiManagementApi',
+ 'Remove-AzApiManagementApiFromGateway',
'Remove-AzApiManagementApiFromProduct',
'Remove-AzApiManagementApiRelease',
'Remove-AzApiManagementApiRevision',
@@ -137,7 +146,10 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct',
'Remove-AzApiManagementAuthorizationServer',
'Remove-AzApiManagementBackend', 'Remove-AzApiManagementCache',
'Remove-AzApiManagementCertificate',
- 'Remove-AzApiManagementDiagnostic', 'Remove-AzApiManagementGroup',
+ 'Remove-AzApiManagementDiagnostic',
+ 'Remove-AzApiManagementGateway',
+ 'Remove-AzApiManagementGatewayHostnameConfiguration',
+ 'Remove-AzApiManagementGroup',
'Remove-AzApiManagementIdentityProvider',
'Remove-AzApiManagementLogger',
'Remove-AzApiManagementOpenIdConnectProvider',
@@ -152,7 +164,9 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct',
'Set-AzApiManagementApiSchema', 'Set-AzApiManagementApiVersionSet',
'Set-AzApiManagementAuthorizationServer',
'Set-AzApiManagementBackend', 'Set-AzApiManagementCertificate',
- 'Set-AzApiManagementDiagnostic', 'Set-AzApiManagementGroup',
+ 'Set-AzApiManagementDiagnostic',
+ 'Update-AzApiManagementGateway',
+ 'Set-AzApiManagementGroup',
'Set-AzApiManagementIdentityProvider', 'Set-AzApiManagementLogger',
'Set-AzApiManagementOpenIdConnectProvider',
'Set-AzApiManagementOperation', 'Set-AzApiManagementPolicy',
diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md
index f388689e8d4c..5593ad5510f4 100644
--- a/src/ApiManagement/ApiManagement/ChangeLog.md
+++ b/src/ApiManagement/ApiManagement/ChangeLog.md
@@ -18,6 +18,18 @@
- Additional information about change #1
-->
## Upcoming Release
+* Added new `Add-AzApiManagementApiToGateway` cmdlet.
+* Added new `Get-AzApiManagementGateway` cmdlet.
+* Added new `Get-AzApiManagementGatewayHostnameConfiguration` cmdlet.
+* Added new `Get-AzApiManagementGatewayKey` cmdlet.
+* Added new `New-AzApiManagementGateway` cmdlet.
+* Added new `New-AzApiManagementGatewayHostnameConfiguration` cmdlet.
+* Added new `New-AzApiManagementResourceLocationObject` cmdlet.
+* Added new `Remove-AzApiManagementApiFromGateway` cmdlet.
+* Added new `Remove-AzApiManagementGateway` cmdlet.
+* Added new `Remove-AzApiManagementGatewayHostnameConfiguration` cmdlet.
+* Added new `Update-AzApiManagementGateway` cmdlet.
+* Added new optional [-GatewayId] parameter to the `Get-AzApiManagementApi` cmdlet.
## Version 2.0.1
* Updated assembly version of service management cmdlets
diff --git a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementApiToGateway.md b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementApiToGateway.md
new file mode 100644
index 000000000000..5f0b3968c83c
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementApiToGateway.md
@@ -0,0 +1,184 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/add-azapimanagementapitogateway
+schema: 2.0.0
+---
+
+# Add-AzApiManagementApiToGateway
+
+## SYNOPSIS
+Attaches an API to a gateway.
+
+## SYNTAX
+
+```
+Add-AzApiManagementApiToGateway -Context -GatewayId -ApiId
+ [-ProvisioningState ] [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Add-AzApiManagementApiToGateway** cmdlet adds an Azure API Management API to a Gateway.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Add-AzApiManagementApiToGateway -Context $ApiMgmtContext -GatewayId "0123456789" -ApiId "0001"
+```
+
+This command adds the specified API to the specified Gateway.
+
+## PARAMETERS
+
+### -ApiId
+Identifier of existing API.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Context
+Instance of PsApiManagementContext.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+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: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GatewayId
+Identifier of existing gateway.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -PassThru
+If specified will write true in case operation succeeds.
+This parameter is optional.
+Default value is false.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ProvisioningState
+Provisioning State (Created).
+This parameter is optional.
+
+```yaml
+Type: System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState]
+Parameter Sets: (All)
+Aliases:
+Accepted values: Created
+
+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: System.Management.Automation.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: System.Management.Automation.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
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+
+### System.String
+
+### System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null]]
+
+### System.Management.Automation.SwitchParameter
+
+## OUTPUTS
+
+### System.Boolean
+
+## NOTES
+
+## RELATED LINKS
+
+[Remove-AzApiManagementApiFromGateway](./Remove-AzApiManagementApiFromGateway.md)
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md b/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md
index b1428341d935..fac006cca8d7 100644
--- a/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md
@@ -11,6 +11,9 @@ Locale: en-US
This topic displays help topics for the Azure API Management Cmdlets.
## Az.ApiManagement Cmdlets
+### [Add-AzApiManagementApiToGateway](Add-AzApiManagementApiToGateway.md)
+Attaches an API to a gateway.
+
### [Add-AzApiManagementApiToProduct](Add-AzApiManagementApiToProduct.md)
Adds an API to a product.
@@ -65,6 +68,15 @@ Gets API Management certificates configured for Mutual Authentication with Backe
### [Get-AzApiManagementDiagnostic](Get-AzApiManagementDiagnostic.md)
Get details of the Diagnostic configured at the service level or the Api Level. Diagnostics are used to log requests/responses from Api Management gateway.
+### [Get-AzApiManagementGateway](Get-AzApiManagementGateway.md)
+Gets all or specific API management Gateway.
+
+### [Get-AzApiManagementGatewayHostnameConfiguration](Get-AzApiManagementGatewayHostnameConfiguration.md)
+Gets all or specific hostname configuration for the existing Gateway.
+
+### [Get-AzApiManagementGatewayKey](Get-AzApiManagementGatewayKey.md)
+Gets keys of the existing Gateway
+
### [Get-AzApiManagementGroup](Get-AzApiManagementGroup.md)
Gets all or specific API management groups.
@@ -182,6 +194,12 @@ Creates an instance of `PsApiManagementCustomHostNameConfiguration`.
### [New-AzApiManagementDiagnostic](New-AzApiManagementDiagnostic.md)
Creates a new diagnostics at the Global scope or Api Scope.
+### [New-AzApiManagementGateway](New-AzApiManagementGateway.md)
+Creates new Gateway entity.
+
+### [New-AzApiManagementGatewayHostnameConfiguration](New-AzApiManagementGatewayHostnameConfiguration.md)
+Creates a hostname configuratin for the existing Gateway.
+
### [New-AzApiManagementGroup](New-AzApiManagementGroup.md)
Creates an API management group.
@@ -212,6 +230,9 @@ Creates an API Management product.
### [New-AzApiManagementRegion](New-AzApiManagementRegion.md)
Creates an instance of PsApiManagementRegion.
+### [New-AzApiManagementResourceLocationObject](New-AzApiManagementResourceLocationObject.md)
+Create a new resource location contract (used in Gateways).
+
### [New-AzApiManagementSamplingSetting](New-AzApiManagementSamplingSetting.md)
Create a new sampling setting for the Diagnostic
@@ -242,6 +263,9 @@ Removes an API Management service.
### [Remove-AzApiManagementApi](Remove-AzApiManagementApi.md)
Removes an API.
+### [Remove-AzApiManagementApiFromGateway](Remove-AzApiManagementApiFromGateway.md)
+Attaches an API to a gateway.
+
### [Remove-AzApiManagementApiFromProduct](Remove-AzApiManagementApiFromProduct.md)
Removes an API from a product.
@@ -272,6 +296,12 @@ Removes an API Management certificate.
### [Remove-AzApiManagementDiagnostic](Remove-AzApiManagementDiagnostic.md)
Remove the Diagnostic entity from Global or API level scope.
+### [Remove-AzApiManagementGateway](Remove-AzApiManagementGateway.md)
+Detaches an API from a Gateway.
+
+### [Remove-AzApiManagementGatewayHostnameConfiguration](Remove-AzApiManagementGatewayHostnameConfiguration.md)
+Removes a hostname configuration from the existing Gateway.
+
### [Remove-AzApiManagementGroup](Remove-AzApiManagementGroup.md)
Removes an existing API management group.
@@ -383,6 +413,9 @@ Updates a particular Api Release.
### [Update-AzApiManagementCache](Update-AzApiManagementCache.md)
updates a cache in Api Management service.
+### [Update-AzApiManagementGateway](Update-AzApiManagementGateway.md)
+Configures an API management Gateway.
+
### [Update-AzApiManagementRegion](Update-AzApiManagementRegion.md)
Updates existing deployment region in PsApiManagement instance.
diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md
index a624d6013039..fe5ed33471d4 100644
--- a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md
+++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md
@@ -37,6 +37,12 @@ Get-AzApiManagementApi -Context -ProductId
[-DefaultProfile ] []
```
+### GetByGatewayId
+```
+Get-AzApiManagementApi -Context -GatewayId
+ [-DefaultProfile ] []
+```
+
## DESCRIPTION
The **Get-AzApiManagementApi** cmdlet gets one or more Azure API Management APIs.
@@ -66,6 +72,14 @@ PS C:\>Get-AzApiManagementApi -Context $ApiMgmtContext -Name "EchoApi"
This command gets the API with the specified name.
+### Example 4: Get a management API by GatewayId
+```
+PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementApi -Context $ApiMgmtContext -GatewayId "g01"
+```
+
+This command gets the API for the specified GatewayId.
+
## PARAMETERS
### -ApiId
@@ -128,6 +142,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -GatewayId
+If specified will try to get all Gateway APIs.
+
+```yaml
+Type: System.String
+Parameter Sets: GetByGatewayId
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Name
Specifies the name of the API to get.
diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGateway.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGateway.md
new file mode 100644
index 000000000000..751733beafb5
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGateway.md
@@ -0,0 +1,112 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/get-azapimanagementgateway
+schema: 2.0.0
+---
+
+# Get-AzApiManagementGateway
+
+## SYNOPSIS
+Gets all or specific API management Gateway.
+
+## SYNTAX
+
+### GetAllGateways (Default)
+```
+Get-AzApiManagementGateway -Context [-DefaultProfile ]
+ []
+```
+
+### GetByGatewayId
+```
+Get-AzApiManagementGateway -Context -GatewayId
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzApiManagementGateway** cmdlet gets all or specific API management Gateway.
+
+## EXAMPLES
+
+### Example 1: Get all gateways
+```
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementGateway -Context $apimContext
+```
+
+This command gets all gateways.
+
+### Example 2: Get a gateway by ID
+```
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementGateway -Context $apimContext -GatewayId "0123456789"
+```
+
+This command gets the gateway 0123456789.
+
+## PARAMETERS
+
+### -Context
+Instance of PsApiManagementContext.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+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: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GatewayId
+Identifier of a gateway.
+If specified will try to find gateway by the identifier.
+
+```yaml
+Type: System.String
+Parameter Sets: GetByGatewayId
+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
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayHostnameConfiguration.md
new file mode 100644
index 000000000000..d8d723cb56a2
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayHostnameConfiguration.md
@@ -0,0 +1,128 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/get-azapimanagementgatewayhostnameconfiguration
+schema: 2.0.0
+---
+
+# Get-AzApiManagementGatewayHostnameConfiguration
+
+## SYNOPSIS
+Gets all or specific hostname configuration for the existing Gateway.
+
+## SYNTAX
+
+### GetByGatewayId (Default)
+```
+Get-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId
+ [-DefaultProfile ] []
+```
+
+### GetByGatewayHostnameId
+```
+Get-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId
+ -GatewayHostnameConfigurationId [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzApiManagementGatewayHostnameConfiguration** cmdlet gets all or specific hostname configuration for the existing Gateway.
+
+## EXAMPLES
+
+### Example 1: Get all hostname configurations for the gateway
+```
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "0123456789"
+```
+
+This command gets all hostname configurations for a "0123456789" gateway.
+
+### Example 2: Get a hostname configuration for the gateway
+```
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "0123456789" -GatewayHostnameConfigurationId "123"
+```
+
+This command gets "123" hostname configuration for a "0123456789" gateway.
+
+## PARAMETERS
+
+### -Context
+Instance of PsApiManagementContext.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GatewayHostnameConfigurationId
+Hostname Configuration identifier.
+This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: GetByGatewayHostnameId
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -GatewayId
+Gateway identifier.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+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
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayKey.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayKey.md
new file mode 100644
index 000000000000..7b2e5c4aaff1
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayKey.md
@@ -0,0 +1,97 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/get-azapimanagementgatewaykey
+schema: 2.0.0
+---
+
+# Get-AzApiManagementGatewayKey
+
+## SYNOPSIS
+Gets keys of the existing Gateway
+
+## SYNTAX
+
+```
+Get-AzApiManagementGatewayKey -Context -GatewayId
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzApiManagementGatewayKey** cmdlet gets keys of the existing Gateway
+
+## EXAMPLES
+
+### Example 2: Get a gateway by ID
+```
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementGatewayKey -Context $apimContext -GatewayId "0123456789"
+```
+
+This command gets the keys for a "0123456789" gateway.
+
+## PARAMETERS
+
+### -Context
+Instance of PsApiManagementContext.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GatewayId
+Gateway identifier.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+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
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayKey
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md
index 951e263f33c4..3aad74c5ca33 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md
@@ -75,7 +75,8 @@ This command creates an API `echoapiv3` in ApiVersionSet `xmsVersionSet` and cop
Creates an API. (autogenerated)
-```powershell
+```powershell
+
New-AzApiManagementApi -ApiId '0001' -Context -Name 'Echo api' -Path 'echov3' -Protocols Http -ServiceUrl 'https://contoso.com/apis/echo'
```
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md
index cf3ccf659f7c..b304100d776e 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md
@@ -42,7 +42,8 @@ This command creates an authorization server.
Creates an authorization server. (autogenerated)
-```powershell
+```powershell
+
New-AzApiManagementAuthorizationServer -AccessTokenSendingMethods AuthorizationHeader -AuthorizationEndpointUrl 'https://contoso/auth' -AuthorizationRequestMethods Get -ClientAuthenticationMethods Basic -ClientId 'clientid' -ClientRegistrationPageUrl 'https://contoso/signup' -ClientSecret '0000000000000000000000000000000000000' -Context -GrantTypes AuthorizationCode -Name 'Contoso OAuth2 server' -ServerId '0123456789' -TokenBodyParameters @{'par1'='val1'} -TokenEndpointUrl 'https://contoso/token'
```
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md
index f52c8e1c6b1e..f6777ff32787 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md
@@ -42,7 +42,8 @@ This command uploads a certificate to Api Management. This certificate can be us
Creates an API Management certificate to be used during Authentication with Backend. (autogenerated)
-```powershell
+```powershell
+
New-AzApiManagementCertificate -CertificateId '0123456789' -Context -PfxFilePath 'C:\contoso\certificates\apimanagement.pfx' -PfxPassword '1111'
```
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGateway.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGateway.md
new file mode 100644
index 000000000000..2c527ac108a6
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGateway.md
@@ -0,0 +1,164 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/new-azapimanagementgateway
+schema: 2.0.0
+---
+
+# New-AzApiManagementGateway
+
+## SYNOPSIS
+Creates new Gateway entity.
+
+## SYNTAX
+
+```
+New-AzApiManagementGateway -Context [-GatewayId ] [-Description ]
+ -LocationData [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+## DESCRIPTION
+The **New-AzApiManagementGateway** cmdlet creates new Gateway entity.
+
+## EXAMPLES
+
+### Example 1: Create a gateway
+```powershell
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>$location = New-AzApiManagementResourceLocationObject -Name "n1" -City "c1" -District "d1" -CountryOrRegion "r1"
+PS C:\>New-AzApiManagementGateway -Context $apimContext -GatewayId "123" -Description "desc" -LocationData $location
+```
+
+This command creates a gateway.
+
+## PARAMETERS
+
+### -Context
+Instance of PsApiManagementContext.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Description
+Gateway description.
+This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -GatewayId
+Identifier of new gateway.
+This parameter is optional.
+If not specified will be generated.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -LocationData
+Gateway location.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation
+Parameter Sets: (All)
+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: System.Management.Automation.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: System.Management.Automation.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
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+
+### System.String
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGatewayHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGatewayHostnameConfiguration.md
new file mode 100644
index 000000000000..165a279fdd79
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGatewayHostnameConfiguration.md
@@ -0,0 +1,197 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/new-azapimanagementgatewayhostnameconfiguration
+schema: 2.0.0
+---
+
+# New-AzApiManagementGatewayHostnameConfiguration
+
+## SYNOPSIS
+Creates a hostname configuratin for the existing Gateway.
+
+## SYNTAX
+
+```
+New-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId
+ [-GatewayHostnameConfigurationId ] -Hostname -CertificateResourceId
+ [-NegotiateClientCertificate] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+## DESCRIPTION
+The **New-AzApiManagementGatewayHostnameConfiguration** cmdlet creates a hostname configuratin for the existing Gateway.
+
+## EXAMPLES
+
+### Example 1: Create a hostname configuration for the existing gateway
+```powershell
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>$cert = Get-AzApiManagementCertificate -Context $apimContext -CertificateId "333"
+PS C:\>New-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "g01" -GatewayHostnameConfigurationId "h01" -Hostname "www.contoso.com" -CertificateResourceId $cert.Id
+```
+
+This command creates a "h01" hostname configuration for a "g01" gateway.
+
+## PARAMETERS
+
+### -CertificateResourceId
+A resource identifier for the existing certificate id.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Context
+Instance of PsApiManagementContext.
+This parameter is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GatewayHostnameConfigurationId
+Identifier of new gateway hostname confiuration.
+This parameter is optional.
+If not specified will be generated.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -GatewayId
+Identifier of existing gateway.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Hostname
+Hostname.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NegotiateClientCertificate
+Flag to enforce NegotiateClientCertificate.
+This parameter is optional.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+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: System.Management.Automation.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: System.Management.Automation.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
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext
+
+### System.String
+
+### System.Management.Automation.SwitchParameter
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md
index 1a83cbc252db..de1e740e4d38 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md
@@ -36,7 +36,8 @@ This command creates a management group.
Creates an API management group. (autogenerated)
-```powershell
+```powershell
+
New-AzApiManagementGroup -Context -Description 'Create Echo Api V4' -GroupId '0001' -Name 'Group0001' -Type Custom
```
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md
index 9d36e8671802..9b2b984d9ea1 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md
@@ -43,7 +43,8 @@ This command creates a logger named ContosoSdkEventHub by using the specified co
Creates an API Management Logger. (autogenerated)
-```powershell
+```powershell
+
New-AzApiManagementLogger -Context -InstrumentationKey -LoggerId 'Logger123'
```
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md
index 8d1368e61c43..fa02519b3248 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md
@@ -14,7 +14,8 @@ Creates new Named Value.
```
New-AzApiManagementNamedValue -Context [-NamedValueId ] -Name
- -Value [-Secret] [-Tag ] [-DefaultProfile ] []
+ -Value [-Secret] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
```
## DESCRIPTION
@@ -160,6 +161,36 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.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: System.Management.Automation.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).
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md
index aad6ecd38502..5d937e6ad1df 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md
@@ -36,7 +36,8 @@ This command creates an OpenID Connect **Provider** named Contoso OpenID Connect
Creates an OpenID Connect provider. (autogenerated)
-```powershell
+```powershell
+
New-AzApiManagementOpenIdConnectProvider -ClientId '12432143' -ClientSecret '000000000000000000000000000000000000000000' -Context -Description 'OpenID Connect provider description' -MetadataEndpointUri 'https://openid.provider/configuration' -Name 'Contoso OpenID Connect Provider' -OpenIdConnectProviderId 'OICProvider01'
```
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementResourceLocationObject.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementResourceLocationObject.md
new file mode 100644
index 000000000000..8bbeb6f5ae1b
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementResourceLocationObject.md
@@ -0,0 +1,126 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/new-azapimanagementresourcelocationobject
+schema: 2.0.0
+---
+
+# New-AzApiManagementResourceLocationObject
+
+## SYNOPSIS
+Create a new resource location contract (used in Gateways).
+
+## SYNTAX
+
+```
+New-AzApiManagementResourceLocationObject -Name [-City ] [-District